export declare type SelectType = "single" | "multi"; export declare const selectType: { single: SelectType; multi: SelectType; }; export declare const supportedSelectTypes: string[]; export interface SelectItem { text: string; value: string; groupBy: string; isSelected: boolean; } export interface SelectGroup { name: string | undefined; options: SelectItem[]; }