1 | import type { DisplayValueType } from '../BaseSelect';
|
2 | export declare function toArray<T>(value: T | T[]): T[];
|
3 | export declare const isClient: HTMLElement;
|
4 | /** Is client side and not jsdom */
|
5 | export declare const isBrowserClient: HTMLElement;
|
6 | export declare function hasValue(value: any): boolean;
|
7 | /** combo mode no value judgment function */
|
8 | export declare function isComboNoValue(value: any): boolean;
|
9 | export declare function getTitle(item: DisplayValueType): string;
|