import type { IconifyIcon } from "@iconify/types";
type $$ComponentProps = {
    icon: IconifyIcon;
    width?: string;
    height?: string;
    class?: string;
};
declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">;
type Icon = ReturnType<typeof Icon>;
export default Icon;
