import React from "react"; import { type VariantProps } from "../utils.js"; declare const iconVariants: (props?: ({ size?: "sm" | "md" | "lg" | "xs" | null | undefined; color?: "accent" | "inherit" | "neutral-light" | "neutral-strong" | "neutral-strong-transparent" | "neutral-base" | "neutral-negative" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface IconProps extends Omit, "color">, VariantProps { label: string; icon: React.ReactNode; } declare const Icon: ((props: IconProps) => React.JSX.Element) & { original: (props: IconProps) => React.JSX.Element; originalName: string; displayName: string; } & { original: ((props: IconProps) => React.JSX.Element) & { original: (props: IconProps) => React.JSX.Element; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition/types").ComponentDecorator<((props: IconProps) => React.JSX.Element) & { original: (props: IconProps) => React.JSX.Element; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; }; export { Icon, type IconProps };