import * as i0 from "@angular/core"; /** * `````` display a single category, dimension or property related to adjacent content. **/ export declare class TagComponent { /** Defines the text to display. */ label: string | undefined; /** Inline style of the element. */ style: Record | null | undefined; /** CSS class(es) of the element. */ styleClass: string; /** Size of the tag. */ size: TagSize | undefined; /** Variant of the tag */ variant: TagVariant | undefined; /** @ignore */ containerClass(): Record; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export type TagSize = 'default' | 'small'; export type TagVariant = 'blue' | 'green' | 'red' | 'yellow' | 'peach' | 'orange';