import { AsyncAPIDocumentInterface, ChannelData } from '../../types/asyncapi.js';
type GetChannelDataParams = {
    document: AsyncAPIDocumentInterface;
    channelId: string | undefined;
};
export declare const getChannelData: ({ document, channelId, }: GetChannelDataParams) => ChannelData | undefined;
export {};
