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 SelectOutlined: import("svelte").Component<$$ComponentProps, {}, "value">;
type SelectOutlined = ReturnType<typeof SelectOutlined>;
export default SelectOutlined;
