import * as i0 from "@angular/core";
/**
* @internal
* Generates base badge classes with style variants
*/
export declare const badgeComponent: (props?: ({
variant?: "primary" | "secondary" | "tertiary" | "accent" | "success" | "info" | "warning" | "error" | null | undefined;
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
iconPosition?: "left" | "right" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
/** Possible badge style variants */
export type BadgeVariantProps = 'primary' | 'secondary' | 'tertiary' | 'accent' | 'success' | 'info' | 'warning' | 'error' | null | undefined;
/** Possible badge size variants */
export type BadgeSizeProps = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | null | undefined;
/** Possible icon positions relative to badge text */
export type BadgeIconPositionProps = 'left' | 'right' | null | undefined;
/** Configuration object for badge styling variants */
export type BadgeProps = {
variant?: BadgeVariantProps;
size?: BadgeSizeProps;
iconPosition?: BadgeIconPositionProps;
};
/**
* A customizable badge component with multiple variants and icon support
*
* @remarks
* Built with Tailwind CSS and class-variance-authority for style management.
* Supports various styling variants, sizes, icon positions, and state modifiers.
*
* @example
* ```html
*
* New Feature
*
* ```
*/
export declare class BadgeComponent {
/**
* Badge style variant
* @defaultValue 'primary'
*/
variant: import("@angular/core").InputSignal;
/**
* Badge size variant
* @defaultValue 'md'
*/
size: import("@angular/core").InputSignal;
/**
* Outline style (border with transparent fill)
* @defaultValue false
*/
outline: import("@angular/core").InputSignal;
/**
* Soft style (muted/subdued color variant)
* @defaultValue false
*/
soft: import("@angular/core").InputSignal;
/**
* Dash style (dashed border)
* @defaultValue false
*/
dash: import("@angular/core").InputSignal;
/**
* Ghost style (transparent background)
* @defaultValue false
*/
ghost: import("@angular/core").InputSignal;
/**
* Icon name (from icon library)
*/
icon: import("@angular/core").InputSignal;
/**
* Position of icon relative to text
* @defaultValue 'left'
*/
iconPosition: import("@angular/core").InputSignal;
/**
* @internal
* Computed class string for the badge container
*/
componentClass: import("@angular/core").Signal;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}