import type { FwToastProps } from '../components/fw-toast/index.types'; export declare interface ToastServiceProps extends Omit { onDismissed?: () => void; } export declare const toastService: () => { success: (options?: ToastServiceProps) => void; error: (options?: ToastServiceProps) => void; warning: (options?: ToastServiceProps) => void; };