import { ToastConfig } from './toast-utils'; import type { ShowToastResult } from './toast-container.types'; export declare class ToastContainer { /** */ containerId: string; /** */ containerClass: string; /** */ position: 'bottom-right' | 'top-right'; private readonly PREFIX_POSITION_CLASS; get hostContainer(): Promise; componentDidLoad(): void; onPositionChange(newPosition: string, oldPosition: string): void; /** * Display a toast message * @param config */ showToast(config: ToastConfig): Promise; render(): any; }