import type { NotificationTypeDefinition } from './types.js'; export interface NotificationRegistry { register(type: NotificationTypeDefinition): void; get(key: string): NotificationTypeDefinition | undefined; list(): NotificationTypeDefinition[]; } export declare function createNotificationRegistry(): NotificationRegistry;