/** * 获取对象数组中指定的 label,可获取单个或一组 label。 */ export declare function getLabelByValue(options: { [key: PropertyKey]: any; }[], value: unknown, keys?: { label: string; value: string; }): any; /** * 在树形结构数据中,根据 value 递归获取对应的 label 路径。 */ export declare function getTreeLabelByValue(options: Record[], value: unknown, keys: { label: string; value: string; children: string; }): string[];