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