/// import { TextInputProps } from 'react-native'; import { TypoOptions } from '../../theme'; export type BoxStyle = 'outline' | 'underline' | 'apple'; interface Props { typo?: TypoOptions; status?: 'default' | 'error'; value: string; onChangeText?: (text: string) => void; inputBgColor?: string; labelBgColor?: string; label?: string; labelColor?: string; placeHolderColor?: string; fontSize?: number; borderColor?: string; borderRadius?: number; focusColor?: string; errorColor?: string; paddingHorizontal?: number; borderWidth?: number; errorMessage?: string; textInputProps?: TextInputProps; boxStyle?: BoxStyle; appleBoxStyle?: 'top' | 'middle' | 'bottom'; disabled?: boolean; allowFontScaling?: boolean; isTextArea?: boolean; } declare const TextField: ({ typo, status, value, onChangeText, label, labelColor, placeHolderColor, inputBgColor, labelBgColor, borderWidth, borderColor, focusColor, errorColor, borderRadius, paddingHorizontal, errorMessage, textInputProps, boxStyle, appleBoxStyle, disabled, allowFontScaling, isTextArea }: Props) => JSX.Element; export default TextField; //# sourceMappingURL=index.d.ts.map