import * as i0 from "@angular/core"; /** * `````` represent entities in small blocks, such as a document status. A chip can contain several different elements such as text and icons. **/ export declare class ChipComponent { /** Defines the text to display. */ label: string | undefined; /** Inline style of the element. */ style: Record | undefined; /** CSS class(es) of the element. */ styleClass: string; /** Size of the chip. */ size: ChipSize | undefined; /** Variant of the chip */ variant: ChipVariant | undefined; /** Left icon url */ leftIcon: string; /** Right icon url */ rightIcon: string; /** @ignore */ containerClass(): Record; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export type ChipSize = 'default' | 'small'; export type ChipVariant = 'blue' | 'green' | 'red' | 'yellow' | 'peach' | 'orange';