import type { FC } from 'react';
import type { Rule } from 'antd/lib/form/';
interface IProps {
    name: string;
    label: string;
    options: string[] | number[] | {
        label: string;
        value: string;
        disabled?: boolean;
        title?: string;
    }[];
    rules?: Rule[];
    defaultValue?: string[];
}
declare const FieldAttr: FC<IProps>;
export default FieldAttr;
