import React, { Dispatch, SetStateAction } from 'react'; export interface TextInputProps extends Omit, 'size'> { disabled?: boolean; error?: boolean; success?: boolean; size?: 'large' | 'regular'; clearInput?: Dispatch>; className?: string; } export declare const TextInput: React.FC;