import { Dispatch, SetStateAction } from 'react'; import { ActionableToastProps } from '../components/ActionableToast'; export interface ToastMessagesInterface { secondsVisible?: number; newToast?: boolean; title: string; message: React.ReactNode; buttonLabel?: React.ReactNode; action?: () => void; onClose?: () => void; } export declare function useToastMessages(): { toastMessages: ActionableToastProps[]; setToastMessages: Dispatch>; showToast: (variables: ToastMessagesInterface) => void; };