import { default as React } from 'react'; export type BaseInputProps> = Omit & { size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; error?: string | boolean; }; export type InputProps = Omit & { wrapperType?: string; prefix?: React.ReactNode; }; export declare const Input: React.ForwardRefExoticComponent>, "prefix"> & { wrapperType?: string; prefix?: React.ReactNode; } & React.RefAttributes>;