import { IPageNotification } from './PageNotification'; export interface IPageNotificationGroup { title: string; notifications: IPageNotification[]; } export declare function PageNotificationGroup(props: { group: IPageNotificationGroup; }): import("react/jsx-runtime").JSX.Element;