import React from 'react'; import { StyleProp, TextInput as NativeTextInput, ViewStyle } from 'react-native'; import type { Theme } from '../../types'; type Props = React.ComponentPropsWithRef & { defaultValue?: string; disabled?: boolean; style?: StyleProp; inputStyle?: StyleProp; theme: Theme; value?: string; variant?: 'default' | 'flat'; }; declare const _default: React.ComponentType> & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ defaultValue, disabled, style, inputStyle, theme, value, variant, ...rest }: Props) => React.JSX.Element), {}>; export default _default; //# sourceMappingURL=TextInput.d.ts.map