import type { HTMLAttributes } from "svelte/elements"; export type DropdownOption = { label: string; value: string; disabled?: boolean; }; type DropdownProps = Omit, "class" | "onselect"> & { label: string; options: DropdownOption[]; value?: string; locale?: string; placeholder?: string; open?: boolean; class?: string; onselect?: (value: string) => void; }; declare const Dropdown: import("svelte").Component; type Dropdown = ReturnType; export default Dropdown; //# sourceMappingURL=Dropdown.svelte.d.ts.map