import type { SelectorItem, SelectorItemOption } from 'hongluan-business-ui'; import type { TagItem } from './types'; export interface DisplayItem { display: string; value: unknown; name: string; type: string; } declare const Utils: { getKey(item: SelectorItem, opt: SelectorItemOption): unknown; getLabel(item: SelectorItem, opt: SelectorItemOption): unknown; getSelectedOptionLabels(item: SelectorItem): unknown[]; getSelectedOptionLabel(item: SelectorItem, val: unknown): any; getSelectedOptionsLabel(item: SelectorItem, vals: unknown[]): any[]; getDisplayStr(display: unknown, separator?: string): string; getSearchTags(searchArr: TagItem[], searchItems: SelectorItem[]): TagItem[]; getSearchParams(searchArr: TagItem[]): { mapParams: Record; originalParams: Record; }; }; export { Utils };