import { ToastProps } from './Toast'; /** * Hook that returns a function to close toasts * @param closingToastClassName - CSS class for closing animation * @returns Function to close toasts by ID or all toasts */ export declare const useCloseToast: (closingToastClassName: ToastProps["toastClassName"]) => (id?: string) => void;