import type { IDrawEndEvent, IShape } from '../../abstraction'; import { RendererEvent } from './renderer-event'; export declare class DrawEndEvent extends RendererEvent implements IDrawEndEvent { static TYPE: string; width: number; height: number; constructor(width: number, height: number, data?: IShape); }