import * as React from 'react'; import type { TextInputProps } from 'react-native'; import { TextInput as RNTextInput } from 'react-native'; import type { ViewStyle } from 'react-native'; type Props = { containerStyle?: ViewStyle; textInputProps?: TextInputProps; name?: string; renderTop?: () => React.ReactElement; renderBottom?: () => React.ReactElement; renderInput?: (args: TextInputProps & { ref: React.LegacyRef | undefined; }) => React.ReactElement; chainTo?: string; ref?: React.RefObject; }; export declare const TextInput: React.ForwardRefExoticComponent & React.RefAttributes>; export {}; //# sourceMappingURL=TextInput.d.ts.map