import type { Notif } from '../messages.js'; type NotifType = 'default' | 'info' | 'success' | 'warning' | 'error'; export type PartialUiNotif = string | { type?: NotifType; msg: string; error?: any; errorMsg?: string; clientError?: boolean; }; export type VIframeUiNotif = { vIframe: true; uiNotification: PartialUiNotif; }; export declare function isVIframeUiNotif(message: any): message is VIframeUiNotif; export declare function convertVIframeUiNotif(notif: PartialUiNotif): Notif; export {};