/// export interface TextSelection { text: string; range: Range | null; } export declare function useTextSelection(elementRef?: React.RefObject): TextSelection;