/** * Informs user about important changes or conditions in the interface. Use this * component if you need to capture user’s attention in a prominent way. */ export declare class CatAlert { private readonly mapIcon; private readonly mapRole; hostElement: HTMLElement; /** * The color palette of the alert. */ color: 'primary' | 'secondary' | 'danger' | 'success' | 'warning' | 'none'; /** * The name of an icon to be displayed in the alert. */ icon?: string; /** * Whether the icon of the alert is deactivated. */ noIcon: boolean; connectedCallback(): void; render(): any; }