import { EventEmitter } from '../../stencil-public-runtime'; export declare class DsCiteoNotification { /** * The notification type * */ type: 'toast' | 'inlineColored' | 'inlineSimple'; /** * The notification level * */ level: 'info' | 'warning' | 'success' | 'danger'; /** * The notification text * */ text: string; /** * If the notification is closable * */ closable: boolean; closeEvent: EventEmitter; render(): any; close(): void; get color(): string; get icon(): string; }