export interface Chip { env: string; clientId: string; data: string[]; } export interface ChipStyle { type: string; color: string; } export declare enum Type { 'primary' = 0, 'secondary' = 1, 'tertiary' = 2 } export declare enum Color { 'costar' = 0, 'error' = 1 } export declare class ChipComponent { withAnimationOptionsVisible: boolean; id: any; popoverContent: string[]; chipStyle: ChipStyle; constructor(); OnWithAnimationOptions(): void; OffWithAnimationOptions(): void; }