import type { AsyncApiChannelObject, AsyncApiDocument, AsyncApiOperationObject } from '@scalar/types/asyncapi/3.1'; export type ResolvedOperationChannel = { channelName: string; channel: AsyncApiChannelObject; channelAddress: string; }; /** * Resolves an operation's channel reference to a channel name, object, and display address. */ export declare const resolveOperationChannel: (document: AsyncApiDocument, operation: AsyncApiOperationObject) => ResolvedOperationChannel | undefined; //# sourceMappingURL=resolve-operation-channel.d.ts.map