export interface SelectProps { title?: string; options: { value: T; text: string; }[]; width?: string | number; disabled?: boolean; value: T; onChange?: (value: T) => void; } export declare function Select({ title, options, width, value, onChange, disabled, }: SelectProps): import("react/jsx-runtime").JSX.Element;