interface NotificationComponentProps { viewAllUrl: string; keyId: number; notification?: { severity?: string; title?: string; description?: string; activity?: any; actorInfo?: any; }; content?: React.ReactNode; } export default function NotificationComponent({ ref, keyId: key, notification, viewAllUrl, content, }: NotificationComponentProps & { ref?: React.Ref; }): import("react/jsx-runtime").JSX.Element; export {};