import React from 'react';
import { BizFormItemProps } from '../FormItem';
import './index.less';
import { AutoCompleteInputProps } from './AutoCompleteInput';
export interface BizFormItemAutoCompleteProps extends BizFormItemProps, Pick<AutoCompleteInputProps, 'options' | 'filterOption' | 'hideMaskOnEmpty' | 'onMaskClick' | 'mask' | 'maskProps' | 'clearable' | 'placeholder' | 'disabledWhiteSpace' | 'maxLength' | 'readOnly' | 'inputProps'> {
    /**
     * @description 弹出层内容样式。
     */
    popupBodyStyle?: React.CSSProperties;
    /**
     * @description 隐藏时销毁 `DOM`。
     */
    destroyOnClose?: boolean;
}
declare const BizFormItemAutoComplete: React.FC<BizFormItemAutoCompleteProps>;
export default BizFormItemAutoComplete;
