import { Shape } from './Shape'; /** * Create a shape of the supplied type */ export declare const create: (shapeType: string, xBound: number, yBound: number) => Shape; /** * Creates a random shape from the types supplied */ export declare const randomShapeOf: (shapeTypes: string[], xBound: number, yBound: number) => Shape;