import type { Key } from '@antdv/ui/es/types'; import type { FieldNames, TreeSelectDataNode } from '../interface'; import type { DefaultOptionType, InternalFieldName } from '../TreeSelect'; export declare function toArray(value: T | T[]): T[]; export declare function fillFieldNames(fieldNames?: FieldNames): { _title: string[]; value: string; key: string; children: string; }; export declare function isCheckDisabled(node: TreeSelectDataNode): boolean; /** Loop fetch all the keys exist in the tree */ export declare function getAllKeys(treeData: DefaultOptionType[], fieldNames: InternalFieldName): Key[]; export declare function isNil(val: any): boolean;