export type BadgeColors = 'blue' | 'grey' | 'red' | 'disabled' | 'notification' | 'theme' | 'neutral'; export declare const badgeVariants: (props?: ({ color?: "disabled" | "theme" | "neutral" | "blue" | "red" | "grey" | "notification" | null | undefined; size?: "default" | "m" | "s" | "l" | null | undefined; isDotOnly?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type BadgeProps = { 'data-testid'?: string; badges: string | number; color?: BadgeColors; className?: string; size?: 's' | 'm' | 'l'; isDotOnly?: boolean; }; //# sourceMappingURL=types.d.ts.map