import { ReactNode } from 'react'; import type { TextInputProps } from 'react-native'; export declare function Input(props: InputProps): JSX.Element; export interface InputProps { style?: any; labelStyle?: any; label?: string; prefix?: string; prefixStyle?: any; textStyle?: any; invalidStyle?: any; error?: string; description?: string | ReactNode; descriptionStyle?: any; value: string; onChange: (value: string, valid: boolean, setValid: Function) => void; placeholder?: string; suffix?: ReactNode; disabled?: boolean; reg?: RegExp; keyboardType?: TextInputProps['keyboardType']; returnKeyType?: 'done' | 'go' | 'next' | 'search' | 'send'; }