diff --git a/packages/victory-create-container/src/index.d.ts b/packages/victory-create-container/src/index.d.ts deleted file mode 100644 index e39a797c6..000000000 --- a/packages/victory-create-container/src/index.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import * as React from "react"; - -export type ContainerType = - | "brush" - | "cursor" - | "selection" - | "voronoi" - | "zoom"; -export function createContainer( - c1: ContainerType, - c2: ContainerType, -): React.ComponentType; - -export function combineContainerMixins(mixins: any, Container: any): any; - -export const makeCreateContainerFunction: ( - mixinMap: any, - Container: any, -) => (behaviorA: any, behaviorB: any) => any;