import React from 'react'; type Option = { value: string; label: string; disabled?: boolean; }; export type SelectProps = { options: Option[]; value: string; onChange: (value: string) => void; placeholder?: string; size?: 'small' | 'medium' | 'large'; label?: string; error?: boolean; helpertext?: string; disabled?: boolean; required?: boolean; }; export declare const Select: React.FC; export {};