import type { FC } from 'react';
import type { Rule } from 'antd/lib/form';
interface IProps {
    name: string;
    label: string;
    rules?: Rule[];
    placeholder?: string;
}
declare const Text: FC<IProps>;
export default Text;
