import { FrontCanvas } from '../canvases/front-canvas'; import { BaseShape } from '../shapes/base-shape'; import { Rect } from '../utils/rect'; import { SelectionBase } from './selection-base'; export declare class ShapeSelection extends SelectionBase { private frontCanvas; private unsubscribe?; constructor(frontCanvas: FrontCanvas, onSelection: (rect: Rect, shape: BaseShape) => void); enable(): void; disable(): void; onDrawDone(shape: BaseShape): void; } //# sourceMappingURL=shape-selection.d.ts.map