import React from 'react';
import { ToastContainerProps } from './ToastContainer';
/**
 * Hook to use the toaster
 * @returns toaster { push, remove, clear }
 */
declare const useToaster: () => {
    push: (message: React.ReactNode, options?: ToastContainerProps) => string | Promise<string | undefined> | undefined;
    remove: (key: string) => void;
    clear: () => void;
};
export default useToaster;
