import React from "react"; import { IconComponent } from "../../icons"; import { VariantProps } from "../../utils"; import { FlexCenterProps } from "../FlexCenter"; export type Props = { icon?: IconComponent; iconSize?: number; } & VariantProps & FlexCenterProps; declare const badgeVariants: import("tailwind-variants").TVReturnType<{ variant: { success: string; error: string; warning: string; info: string; }; withIcon: { true: string; false: string; }; }, undefined, "w-fit items-center gap-1 rounded py-0.5", { variant: { success: string; error: string; warning: string; info: string; }; withIcon: { true: string; false: string; }; }, undefined, import("tailwind-variants").TVReturnType<{ variant: { success: string; error: string; warning: string; info: string; }; withIcon: { true: string; false: string; }; }, undefined, "w-fit items-center gap-1 rounded py-0.5", unknown, unknown, undefined>>; export declare const Badge: React.ForwardRefExoticComponent<{ icon?: IconComponent; iconSize?: number; } & VariantProps>> & Omit, "height" | "width"> & import("../..").TextColorVariantProps & React.RefAttributes>; export {}; //# sourceMappingURL=Badge.d.ts.map