import { type ReactNode } from 'react'; import { type ToastProps } from 'react-toastify/dist/types'; import { type ActionsDirection, type Variant } from '../types'; export type NotificationTemplateProps = ToastProps & { icon?: JSX.Element; title: string; filled?: boolean; variant: Variant; content?: ReactNode; actions?: JSX.Element; actionsDirection?: ActionsDirection; showCloseButton?: boolean; }; export declare const NotificationTemplate: ({ icon, title, closeToast, content, actions, variant, filled, actionsDirection, showCloseButton, }: NotificationTemplateProps) => JSX.Element;