import type { OnSelectionChangeFunc } from '../types'; export type UseOnSelectionChangeOptions = { onChange: OnSelectionChangeFunc; }; declare function useOnSelectionChange({ onChange }: UseOnSelectionChangeOptions): void; export default useOnSelectionChange; //# sourceMappingURL=useOnSelectionChange.d.ts.map