interface SelectOption { value: T; label: string; } interface SelectProps { label?: string; options: Array>; value?: T; onChange?: (value: T) => void; description?: string; } export declare function Select(props: SelectProps): import("solid-js").JSX.Element; export {};