import * as react from 'react'; import { TextInputProps, ViewStyle, TextInput } from 'react-native'; type InputSize = "sm" | "md" | "lg"; interface InputProps extends Omit { value?: string; onChange?: (value: string) => void; size?: InputSize; invalid?: boolean; leading?: React.ReactNode; trailing?: React.ReactNode; style?: ViewStyle; } declare const Input: react.ForwardRefExoticComponent>; export { Input, type InputProps, type InputSize };