import React from 'react';
import { BizFormItemProps } from '../FormItem';
import { SuperSelectorProps } from './SuperSelector';
export interface BizFormItemSelectorProps extends Omit<BizFormItemProps, 'children'>, Pick<SuperSelectorProps, 'columns' | 'mapKeys' | 'multiple' | 'radioMode' | 'showCheckMark' | 'options'> {
    /**
     * @description 透传 Selector 组件属性。
     * @see {@link https://mobile.ant.design/zh/components/selector#属性|SelectorProps}
     */
    selectorProps?: SuperSelectorProps;
}
declare const BizFormItemSelector: React.FC<BizFormItemSelectorProps>;
export default BizFormItemSelector;
