interface CanvasEventHandlersProps { isEnabled: boolean; canvasRef: React.RefObject; send: (event: any) => void; selectedElement: any; setHoveredElement: (element: HTMLElement | null) => void; setEditingElement: (element: HTMLElement | null) => void; setEditingText: (text: string) => void; setSelectionRect: (rect: DOMRect | null) => void; } export declare const useCanvasEventHandlers: ({ isEnabled, canvasRef, send, selectedElement, setHoveredElement, setEditingElement, setEditingText, setSelectionRect, }: CanvasEventHandlersProps) => void; export {}; //# sourceMappingURL=CanvasEventHandlers.d.ts.map