Files
Henry Whitaker acccfced1b Updated to v1.3.5
2020-05-12 11:57:22 +01:00

11 lines
355 B
TypeScript

import { DOMAttributes } from 'react';
import { ToastProps } from '../types';
export declare function useToast(props: ToastProps): {
playToast: () => void;
pauseToast: () => void;
isRunning: boolean;
preventExitTransition: boolean;
toastRef: import("react").RefObject<HTMLDivElement>;
eventHandlers: DOMAttributes<HTMLElement>;
};