import { InputProps } from 'antd/lib/input';
import { FC } from 'react';
import './ainput.css';
declare type AInputProps = Pick<InputProps, 'value' | 'className' | 'onChange' | 'placeholder' | 'allowClear' | 'maxLength' | 'showCount' | 'suffix' | 'prefix' | 'disabled'>;
export declare const AInput: FC<AInputProps>;
export {};
