type PluginCompatibilityStatus = "supported" | "deprecated" | "unsupported"; interface ChannelHostCompatibilityEntry { readonly plugin_type: "channel_adapter"; readonly plugin_api_version: string; readonly host_api_version: string; readonly status: PluginCompatibilityStatus; readonly notes?: string; } declare const CHANNEL_HOST_COMPATIBILITY_MATRIX: readonly ChannelHostCompatibilityEntry[]; declare function findChannelHostCompatibilityEntry(params: { plugin_type: string; plugin_api_version: string; host_api_version: string; }): ChannelHostCompatibilityEntry | undefined; declare function isChannelHostCompatibilitySupported(params: { plugin_type: string; plugin_api_version: string; host_api_version: string; }): boolean; export { type ChannelHostCompatibilityEntry as C, type PluginCompatibilityStatus as P, CHANNEL_HOST_COMPATIBILITY_MATRIX as a, findChannelHostCompatibilityEntry as f, isChannelHostCompatibilitySupported as i };