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