import React from 'react'; import { AlertProps } from '@mui/material/Alert'; import { ZButtonProps } from '../types'; export interface ZNotificationProps extends AlertProps { title?: string; message: React.ReactNode; handleClose: () => void; classes?: { root?: string; title?: string; message?: string; }; actions?: { confirm?: ZButtonProps; cancel?: ZButtonProps; } | React.ReactNode; showClose?: boolean; lineClamp?: number; } export declare const ZNotification: (props: ZNotificationProps) => JSX.Element;