import React from 'react'; import { SelectProps } from 'antd'; import { BizFormItemProps } from './Item'; export interface BizFormItemSelectProps extends BizFormItemProps, Pick, 'allowClear' | 'placeholder' | 'options' | 'fieldNames' | 'filterOption' | 'optionFilterProp' | 'mode' | 'showSearch'> { all?: boolean; allValue?: any; allLabel?: React.ReactNode; excludeValues?: ((options: Required>['options']) => any[]) | any[]; selectProps?: SelectProps; } declare function BizFormItemSelect(props: BizFormItemSelectProps): React.JSX.Element; export default BizFormItemSelect;