import { ToastConfig as IxToastConfig } from '@siemens/ix'; export type ToastConfig = { message?: string | React.ReactNode; action?: React.ReactNode; }; export declare function showToast(config: Omit & ToastConfig): Promise;