import { ReactNode } from 'react'; import { NotifyProps } from './Notify'; export interface NotifyOptions extends NotifyProps { id?: string; } export interface NotifyShow { (options: NotifyOptions): void; (message: ReactNode, options?: NotifyOptions): void; } export interface NotifyInternalShow { (optionsOrMessage: ReactNode | NotifyOptions, options?: NotifyOptions, innerType?: NotifyOptions['type']): void; } export declare const show: NotifyShow; export declare const success: NotifyShow; export declare const warning: NotifyShow; export declare const error: NotifyShow; export declare const hide: (id?: string) => void; export declare const hideAll: () => void;