import type { NotifyOptions, NotifyProps } from './type'; declare const exportNotifyNamespace: ((props: NotifyProps & import("./type").NotifyPrivateProps) => JSX.Element) & { show: (option: string | NotifyProps) => void; setDefaultOptions: (options: NotifyOptions) => void; resetDefaultOptions: () => void; clear: () => void; currentOptions: NotifyOptions; }; export { exportNotifyNamespace as Notify }; export * from './type';