/** Dropdown select. Same chrome as Input plus a chevron. */ export interface SelectOption { value: string; label: string } export interface SelectProps extends Omit, 'onChange'> { options?: (SelectOption | string)[]; value?: string; onChange?: (value: string) => void; placeholder?: string; } export function Select(props: SelectProps): JSX.Element;