import type { PropsWithChildren, ReactElement } from "react"; import React from "react"; export declare const ToastContext: React.Context<{ lastToastId: string; setLastToastId: React.Dispatch; }>; export declare function ToastProvider({ children }: PropsWithChildren): ReactElement;