import { Message, ToastOptions } from './toast.types'; declare const toast: { (message: Message, options?: ToastOptions): string; dismiss: (toastId?: string, toasterId?: string) => void; }; export { toast };