diff --git a/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts b/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts index 91d64ce7965f..98922920a2d7 100644 --- a/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts +++ b/packages/react-native/Libraries/Components/TextInput/TextInput.d.ts @@ -944,4 +944,9 @@ export class TextInput extends TextInputBase { * Removes all text from the input. */ clear: () => void; + + /** + * Sets the start and end positions of text selection. + */ + setSelection: (start: number, end: number) => void; }