import { ReactNode } from "react";
import { ICON_COLOR, ICON_SIZE, ICON_TYPE } from "./types";
type Props = {
    children: ReactNode;
    color?: (typeof ICON_COLOR)[number];
    className?: string;
    size?: (typeof ICON_SIZE)[number];
    inline?: boolean;
    type?: (typeof ICON_TYPE)[number];
    isEnclosed?: boolean;
};
export declare const VuiIcon: ({ children, size, color, className, inline, type, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
