export declare const SELECT_INPUT_SIZES: readonly ["md", "lg"]; export declare const SELECT_INPUT_VARIANTS: readonly ["default", "destructive"]; export type SelectInputSize = (typeof SELECT_INPUT_SIZES)[number]; export type SelectInputVariant = (typeof SELECT_INPUT_VARIANTS)[number]; export interface SelectOption { value: string; label: string; disabled?: boolean; } export interface SelectChangeDetail { value: string; }