import type { Gaussian2DClassOptions } from './gaussian2D/Gaussian2D.ts'; /** * kind of shape */ export interface GaussianShape2D extends Gaussian2DClassOptions { kind: 'gaussian'; } export type Shape2D = GaussianShape2D; /** Discriminant of every 2D shape. */ export type Shape2DKind = Shape2D['kind']; //# sourceMappingURL=Shape2D.d.ts.map