import type { Shape2D } from './Shape2D.ts'; import { Gaussian2D } from './gaussian2D/Gaussian2D.ts'; /** * Generate a 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: Shape2D): Gaussian2D; //# sourceMappingURL=getShape2D.d.ts.map