import * as react_jsx_runtime from 'react/jsx-runtime';
import { AllHTMLAttributes, ReactNode } from 'react';

declare enum Colors {
    Blue = "blue",
    Green = "green",
    Pink = "pink",
    Purple = "purple",
    Yellow = "yellow"
}
declare const DEFAULT_COLOR = Colors.Pink;

interface CuteIconProps extends AllHTMLAttributes<HTMLDivElement> {
    icon: ReactNode;
    color?: `${Colors}`;
}

declare const CuteIcon: {
    ({ color, icon, ...props }: CuteIconProps): react_jsx_runtime.JSX.Element;
    displayName: string;
};

export { CuteIcon, Colors as CuteIconColors, type CuteIconProps, DEFAULT_COLOR as DEFAULT_CUTE_ICON_COLOR };
