import type { Shape2D } from './Shape2D.ts'; import type { Shape2DInstance } from './Shape2DInstance.ts'; /** * Generate an instance of a specific kind of shape. * @param shape - shape descriptor specifying the kind and parameters. * @returns an instance of the requested 2D shape class. */ export declare function getShape2D(shape: TShape): Shape2DInstance; //# sourceMappingURL=getShape2D.d.ts.map