import type { FC } from 'react';
import type { SizeType } from 'antd/lib/config-provider/SizeContext';
import './index.less';
interface SelectAttrOptionsItem {
    label: string;
    value: string;
}
interface IProps {
    name: string;
    label: string;
    placeholder?: string;
    options: SelectAttrOptionsItem[];
    defaultValue?: string;
    dependencies?: string[];
    dependenciesValues?: Record<string, any>;
    size?: SizeType;
    DSLCore?: any;
    rules?: any;
    tooltipText?: string;
}
declare const SelectAttr: FC<IProps>;
export default SelectAttr;
