export interface IdsToastServiceSettings { id?: string; title?: string; message?: string; messageId?: string; closeButtonLabel?: string; allowLink?: boolean; audible?: boolean; draggable?: boolean; position?: string; progressBar?: boolean; savePosition?: boolean; timeout?: number; uniqueId?: string; destroyOnComplete?: boolean; } /** * IDS Toast Service */ export default class IdsToastService { static show(settings: IdsToastServiceSettings): void; static hide(id: string): void; static hideAll(): void; }