import { Option } from "../form/type";
export declare function setDicAll(option: Option): void;
/**
 * 递归移除对象数组中空的 children 字段
 */
interface TreeNode {
    [key: string]: any;
    children?: TreeNode[];
}
export declare function removeEmptyChildren(arr: TreeNode[]): TreeNode[];
export {};
