import type { ShowToastResult } from './toast-container.types'; import { ToastConfig } from './toast-utils'; export declare class ToastContainer { hostElement: HTMLIxToastContainerElement; /** * Position of the toast container. Determines where the toasts will be displayed on the screen. */ position: 'bottom-right' | 'top-right'; /** * Display a toast message * @param config */ showToast(config: ToastConfig): Promise; render(): any; }