import { IGeneralContext, ISelectionChangeCallback, ISelectionChangeOptions } from '../../types'; declare const onSelectionChange: (callback: ISelectionChangeCallback, options?: ISelectionChangeOptions) => () => void; declare const detectSelectionChanges: (context: IGeneralContext, selectedLayerIds: string[]) => boolean; declare const runSelectionChangeHandlers: (context: IGeneralContext) => void; export { onSelectionChange, detectSelectionChanges, runSelectionChangeHandlers };