export type ToastPosition = 'top' | 'center' | 'bottom'; export interface ToastOptions { message: string; duration?: number; position?: ToastPosition; } type Listener = (opts: ToastOptions) => void; export declare const ToastService: { show(opts: ToastOptions): void; subscribe(listener: Listener): () => void; }; export {}; //# sourceMappingURL=ToastService.d.ts.map