///
import type { CommonFormPropsType } from '../../types';
export declare function DepartTreeSelectH5({ id, className, style, label, labelVisible, name, placeholder, disabled, layout, requiredFlag, size, decorator, multiple, focus: autoFocus, confirmOrgList, setConfirmOrgList, selectedOrgList, setSelectedOrgList, errorInfo, setErrorInfo, treeData, }: {
id: any;
className: any;
style: any;
label?: string;
labelVisible?: boolean;
name?: string;
placeholder?: string;
disabled?: boolean;
layout?: string;
requiredFlag?: boolean;
size?: string;
decorator: any;
multiple?: boolean;
focus?: boolean;
confirmOrgList: any;
setConfirmOrgList: any;
selectedOrgList: any;
setSelectedOrgList: any;
errorInfo: any;
setErrorInfo: any;
treeData: any;
}): JSX.Element;
export interface IDepartTreeSelec extends CommonFormPropsType {
defaultValue?: Readonly;
confirmValue?: string;
placeholder?: string;
defaultValueType?: 'noneDepart' | 'confirmDepart';
maxLength?: number;
focus?: boolean;
mutiple?: boolean;
size?: 's' | 'm' | 'l' | 'full';
clearable?: boolean;
multiple?: boolean;
relation?: object;
isMuti?: boolean;
onChange?: (v: any) => void;
request?: any;
}