import type { IconifyIcon } from "@iconify/types";
type $$ComponentProps = {
    options: {
        label: string;
        value: string;
        icon?: IconifyIcon;
    }[];
    chosenOptions: string[];
};
declare const ChipChooser: import("svelte").Component<$$ComponentProps, {}, "">;
type ChipChooser = ReturnType<typeof ChipChooser>;
export default ChipChooser;
