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