diff --git a/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts b/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts index 97535f6cf825..e682fafda227 100644 --- a/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts +++ b/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts @@ -515,6 +515,10 @@ export type TextInputKeyPressEvent = export interface TextInputChangeEventData extends TargetedEvent { eventCount: number; text: string; + selection?: { + start: number; + end: number; + }; } /**