import { JSX, ReactNode } from "react";
interface ToastContextProps {
    toast: any;
    showToast: (message: string, severityValue: "success" | "info" | "warn" | "error", summary: string) => void;
}
interface ToastProviderProps {
    children: ReactNode;
}
export declare function ToastProvider({ children }: ToastProviderProps): JSX.Element;
export declare const useToast: () => ToastContextProps;
export {};
