import { fabric } from "fabric"; import Base from "./Base"; import { ControllerOptions } from ".."; declare class Events extends Base { constructor(props: ControllerOptions); private initialize; destroy(): void; private onDoubleClick; private onMouseDown; objectModified: (event: fabric.IEvent) => void; onMouseOut: () => void; onMouseWheel: (event: fabric.IEvent) => void; handleZoom: (event: fabric.IEvent) => void; onKeyDown(event: KeyboardEvent): void; onBackgroundSelected: () => void; handleSelection: (target: fabric.IEvent) => void; scaleTextbox: (target: fabric.Textbox) => void; } export default Events;