export declare const OPEN_API_TYPE = "openAPI"; export declare const ASYNC_API_TYPE = "asyncAPI"; export declare const UNKNOWN = "unknown"; export interface EventDetails { name: string; state: string; id: string; description: string; version: string; modifiedAt?: Date; } export type EventSpecType = "openAPI" | "asyncAPI" | "unknown"; export interface EventSpec { type: EventSpecType; data: string; }