import type { ToastController, ToastLevel } from "./controllers/toast-controller.js"; export interface NotifyTarget { readonly toast: ToastController; } export interface NotifyOptions { readonly level?: ToastLevel | undefined; readonly durationMs?: number | undefined; readonly key?: string | undefined; } export declare function notify(services: NotifyTarget, message: string, options?: NotifyOptions): void; export declare function notifySuccess(services: NotifyTarget, message: string, options?: Omit): void; export declare function notifyWarn(services: NotifyTarget, message: string, options?: Omit): void; export declare function notifyError(services: NotifyTarget, message: string, options?: Omit): void;