import { DismissToast, UpdateToast } from "./CreateToastContext.types";
import { TimerToast } from "./ToastTypes";
export declare const useToastTimer: (toasts: TimerToast[], updateToast: UpdateToast<TimerToast>, dismissToast: DismissToast) => {
    resumeTimer: (toastId: string) => void;
    pauseTimer: (toastId: string) => void;
};
