import { FC, PropsWithChildren } from 'react';
import { ToastProps } from 'react-toastify';
import { NotificationToastProps } from './NotificationContent';
import { NotificationCommonProps } from './types';
export type NotificationProps = Omit<ToastProps, 'transition'> & NotificationCommonProps & NotificationToastProps;
export declare const Notification: FC<PropsWithChildren<NotificationProps>>;
