import type { ReactNode } from 'react'; import type { Theme as ThemeToastify, ToastOptions, TypeOptions } from 'react-toastify'; type CloseButtonProps = { closeToast: (event: React.MouseEvent) => void; type: TypeOptions; ariaLabel?: string; theme: ThemeToastify; }; export declare function notification(children: ((props: CloseButtonProps) => ReactNode) | ReactNode, title: string, icon?: ReactNode, isClosable?: boolean, containerId?: string, options?: ToastOptions): import("react-toastify").Id; export declare namespace notification { var displayName: string; } export {}; //# sourceMappingURL=Notification.d.ts.map