design-react-kit
Version:
Componenti React per Bootstrap 5
7 lines (6 loc) • 399 B
TypeScript
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>>;