import type { IconifyIcon } from "@iconify/types";
import type { SVGAttributes } from "svelte/elements";
type $$ComponentProps = {
    icon: IconifyIcon;
    size?: number;
} & Omit<SVGAttributes<SVGElement>, "width" | "height">;
declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">;
type Icon = ReturnType<typeof Icon>;
export default Icon;
