import React from "react"; import type { ArgsProps as NotificationOptions, NotificationConfig } from "antd/es/notification/interface"; export type { NotificationConfig }; declare function create(options: NotificationOptions): void; declare function destroy(key?: React.Key): void; declare function Root(config?: NotificationConfig): React.ReactElement; export declare const NotificationUtil: Readonly<{ create: typeof create; destroy: typeof destroy; Root: typeof Root; }>;