import { Toast } from "./types"; export type ToastContext = { addToast: (props: Toast) => number; removeToast: (id: number) => void; removeAllToasts: () => void; }; export declare const ToastContext: import("react").Context; //# sourceMappingURL=context.d.ts.map