import React from 'react'; import { GlobalContextParams } from '../context-provider'; export interface NotifyBaseProps { getContainer?: () => HTMLElement; onClose?: (scene?: string) => void; content?: React.ReactNode; visible?: boolean; close?: (e: any) => void; type?: string; } export declare function notify
(Component: React.FC
, type?: string): (originConfig: string | Pick
>, context?: GlobalContextParams | undefined) => { update: (newConfig: Pick
>) => void; close: () => void; };