import { ChangeEvent } from "react"; export type SelectOption = { value: string; label: string; }; export default function Select({ label, options, value, onChange, disabled }: { label: string; options: SelectOption[]; value: string; onChange: (value: string) => void; disabled?: boolean; }) { return ( ); }