import React from 'react'; import type { GroupedOptions } from '../../shared/groupedOptions.js'; type BaseOption = { value: string; label: string; }; type Props = { id?: string; testId?: string; options: Option[] | GroupedOptions[]; value: string; color: string; height: number; padding: number; onChange: (newValue: Option) => unknown; }; export declare function Select({ id, testId, options, value, color, height, padding, onChange, }: Props): React.JSX.Element; export {};