import * as React from "react";
import { Action, DefaultToast } from "./ToastTypes";
export declare const useToastState: <T extends DefaultToast>() => StateReturnType<T>;
export interface StateReturnType<T> {
    toasts: T[];
    dispatch: React.Dispatch<Action<T>>;
}
