import type { IconifyIcon } from "@iconify/types";
import type { HTMLOptionAttributes, HTMLSelectAttributes } from "svelte/elements";
type Option = {
    icon?: IconifyIcon;
    text: string;
    value: string;
} & HTMLOptionAttributes;
type $$ComponentProps = {
    label: string;
    options: Option[];
    width?: string;
    value: string;
} & HTMLSelectAttributes;
declare const Select: import("svelte").Component<$$ComponentProps, {}, "value">;
type Select = ReturnType<typeof Select>;
export default Select;
