import { ReactNode } from "react"; export interface ToastContextProviderProps { duration: number; children: ReactNode; } export declare function ToastContextProvider({ duration, children, }: ToastContextProviderProps): import("react").JSX.Element;