import { type Range, type EmitterSource } from "quill-next"; export type SelectionChangeHandler = (range: Range, oldRange: Range, source: EmitterSource) => void; export declare function useQuillSelectionChange(callback: SelectionChangeHandler): void;