import type { AsyncApiDocument, AsyncApiOperationObject } from '@scalar/types/asyncapi/3.1'; export type ChannelOperationSummary = { operationName: string; operation: AsyncApiOperationObject; action: 'send' | 'receive'; }; /** * Lists AsyncAPI operations that target a given channel (for reference in the channel connection UI). */ export declare const getChannelOperations: (document: AsyncApiDocument, channelName: string) => ChannelOperationSummary[]; //# sourceMappingURL=get-channel-operations.d.ts.map