import React, { ReactNode } from 'react'; import { BaseInputProps } from '../../../types'; export interface InputProps extends Omit, 'prefix' | 'size'>, BaseInputProps { asElement?: React.ElementType; disabled?: boolean; textArea?: boolean; prefix?: string | ReactNode; suffix?: string | ReactNode; unstyle?: boolean; form?: any; field?: any; size?: 'xs' | 'sm' | 'md' | 'lg'; } export declare const Input: React.ForwardRefExoticComponent>; export default Input;