export default Toast; export const Toast: React.ForwardRefExoticComponent>; export function ToastContainer({ toasts, position, onRemove }: { toasts?: never[] | undefined; position?: string | undefined; onRemove: any; }): import("react/jsx-runtime").JSX.Element; export function useToast(): { toast: { success: (title: any, message: any, options: any) => void; error: (title: any, message: any, options: any) => void; warning: (title: any, message: any, options: any) => void; info: (title: any, message: any, options: any) => void; }; toasts: never[]; removeToast: (id: any) => void; }; import React from 'react'; //# sourceMappingURL=Toast.d.ts.map