import { InputProps } from 'antd';
import { FC } from 'react';
import { INPUT } from '../../Types';
export interface IInput {
    ctype: typeof INPUT;
    props: InputProps;
}
declare const Input: FC<IInput>;
export default Input;
