import { NativeSyntheticEvent, TextInputSelectionChangeEventData } from "react-native";
export default function useTextInputCursorIndicator(): {
    cursorPosition: number;
    isSelectionActive: boolean;
    handleSelectionChange: (event: NativeSyntheticEvent<TextInputSelectionChangeEventData>) => void;
    handleTextChange: (text: string) => void;
};
