/// declare type Option = { id: number | null; name: string; unavailable: boolean; }; declare type Props = { label: string; onSelect: (value: Option) => void; options: Option[]; initialValue?: number | null; value: number | null; }; export declare function Select({ label, onSelect, options, initialValue, value }: Props): JSX.Element; export {};