import React from 'react'; declare const TextInputV1: React.ForwardRefExoticComponent & React.RefAttributes>; export declare type TextInputProps = Omit, 'size'> & _TextInputProps; declare type _TextInputProps = { disabled?: boolean; error?: string | boolean; SuffixComponent?: () => React.ReactNode; PrefixComponent?: () => React.ReactNode; ref?: React.Ref; label?: string; variant?: 'default' | 'exclusive' | 'unstyled'; onChange: React.FormEventHandler; clearable?: boolean; size?: 'small' | 'medium' | 'large'; }; export default TextInputV1;