import { type ReactNode } from "react"; import { type ToastOptions, type ToastType } from "./toast.shared"; export declare function setDefaultToastOptions(options: ToastOptions): void; export declare function resetDefaultToastOptions(): void; export declare function allowMultiple(allow: boolean): void; export declare function openToast(args: ReactNode | ToastOptions): string | undefined; export declare function createToast(type: ToastType): (args: string | Omit) => string | undefined; export declare function closeToast(selector?: string): void;