type FrameworkProtocol = "onebot.v11" | "onebot.v12" | "satori.v1" | "milky.v1"; type FrameworkTransport = "websocket" | "reverse-websocket" | "sse" | "webhook"; type FrameworkKind = "framework" | "distribution"; export type EcosystemEntryKind = FrameworkKind | "sdk" | "bridge"; export type EcosystemPriority = "next" | "later" | "legacy"; export interface FrameworkEcosystemEntry { id: string; displayName: string; kind: EcosystemEntryKind; language: string; protocols: readonly FrameworkProtocol[]; transports: readonly FrameworkTransport[]; priority: EcosystemPriority; upstream: string; evidence: string; limitation: string; runtime: { stage: "experimental" | "legacy"; protocol: FrameworkProtocol; transport: FrameworkTransport; defaultFrameworkOrigin: string | null; reversePath?: string; }; } export declare function listFrameworkEcosystem(): readonly FrameworkEcosystemEntry[]; export {}; //# sourceMappingURL=framework-ecosystem.d.ts.map