export interface SelectOption { id: string | undefined; text: string; value: string; attributes: string | undefined; disabled: boolean | undefined; } export type SelectSize = 's' | 'm'; //# sourceMappingURL=select.types.d.ts.map