import type { Ref } from '@stacksjs/stx'; /** * Reactively track the user's text selection. */ export declare function useTextSelection(): UseTextSelectionReturn; export declare interface UseTextSelectionReturn { text: Ref ranges: Ref selection: Ref }