import "./SingleSelectDropdown.css"; export type SingleSelectDropdownOption = { label: string; value: string; }; export type SingleSelectDropdownProps = { options: SingleSelectDropdownOption[]; value: string; onChange: (val: string) => void; placeholder?: string; className?: string; }; export default function SingleSelectDropdown({ options, value, onChange, placeholder, className, }: SingleSelectDropdownProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SingleSelectDropdown.d.ts.map