import * as ReactNative from 'react-native'; import { NamableConstructor } from './util'; type TextInputComponentConstructor = NamableConstructor & typeof ReactNative.TextInput; /** * **Do not use directly.** * * This method is used by the instrumentor to capture TextInput change events. This method is * called on the internal `InternalTextInput` component from the React Native library. * * @param TextInputComponent A `TextInput` component. * @returns An instrumented HOC wrapping `TextInputComponent`. */ export declare const withHeapTextInputAutocapture: (TextInputComponent: TextInputComponentConstructor) => TextInputComponentConstructor; export {};