import { IKeyUpEvent, IShape, ShapeType } from '../../abstraction'; import { DrawerType } from '../../abstraction'; import { DrawerBase } from './base'; export declare class DeleteDrawer extends DrawerBase { private _ignoreEventTargets; private _keyUpBound; constructor(ignoreEventTargets?: Array); get type(): DrawerType; get shapeType(): ShapeType; isBase(): boolean; isDragable(): boolean; isClickable(): boolean; isSelectable(): boolean; lock(): void; release(): void; protected handleKeyUp(event: IKeyUpEvent): void; }