export type SelectInputProps = { value?: string; popupVisible?: boolean; options?: { label: string; value: string; }[]; placeholder?: string; clearable?: boolean; filterable?: boolean; };