import React from 'react'; import { noop } from '../utils'; import { NotifyOptions, NotifyProps, NotifyStatic } from './PropsType'; declare const NotifyNamespace: NotifyStatic; declare function nextTickClear(): void; declare const exportNotifyNamespace: React.FC & { show: (p: string | NotifyProps) => typeof noop; setDefaultOptions: (options: NotifyOptions) => void; resetDefaultOptions: () => void; clear: typeof nextTickClear; }; export default exportNotifyNamespace; export { exportNotifyNamespace as Notify, NotifyNamespace }; export type { NotifyProps, NotifyType, NotifyStatic } from './PropsType';