import { Content, callbackFuncTypes, ToastOptionsInterface } from "./types/react-tiny-toast";
export declare const toastManager: {
    subscribe(callback: callbackFuncTypes): void;
    add(content: Content, options: ToastOptionsInterface): number;
    remove(id: number): boolean;
};
declare const toast: {
    show: (content: Content, options: ToastOptionsInterface) => number;
    remove: (id: number) => boolean;
};
export default toast;
