import { type ReactNode } from "react"; import { type NotifyColor, type NotifyOptions } from "./notify.shared"; export declare function setDefaultNotifyOptions(options: NotifyOptions): void; export declare function resetDefaultNotifyOptions(): void; export declare function openNotify(args: ReactNode | NotifyOptions): void; export declare function createNotify(color: NotifyColor): (args: string | Omit) => void; export declare function closeNotify(selector?: string): void;