import { ICanvasSelectionChangeCallback, ICanvasSelectionChangeOptions, IGeneralContext } from '../../types'; declare const onCanvasSelectionChange: (callback: ICanvasSelectionChangeCallback, options?: ICanvasSelectionChangeOptions) => () => void; declare const detectCanvasSelectionChanges: (context: IGeneralContext, selectedCanvasId?: string) => boolean; declare const runCanvasSelectionChangeHandlers: (context: IGeneralContext) => void; export { onCanvasSelectionChange, detectCanvasSelectionChanges, runCanvasSelectionChangeHandlers };