import type { FC } from 'react';
import type { Rule } from 'antd/lib/form';
import './index.less';
interface FieldNameAliasProps {
    /**
     * 控件编码
     */
    name: string;
    /**
     * 控件左侧标签
     */
    label: string;
    /**
     * 控件规则
     */
    rules?: Rule[];
    /**
     * 提示语
     */
    placeholder?: string;
    /**
     * 当前控件配置的组件属性集合
     */
    selectedComp: any;
}
declare const FieldNameAlias: FC<FieldNameAliasProps>;
export default FieldNameAlias;
