interface OptionsItem extends Record { label?: string | number; value?: string | number | null; } /** * map 结构转 array * @param map * @param useAllSelect 全部默认选项 * @param allSelectLabel 全部项默认lable * @param allSelectValue 全部项默认value * @returns OptionsItem[] */ export declare const translateMapToArray: (map: Map, useAllSelect?: boolean, allSelectLabel?: string, allSelectValue?: any) => OptionsItem[]; export {}; //# sourceMappingURL=mapToArray.d.ts.map