import type { ChannelPlugin } from "../channels/plugins/types.plugin.js"; import type { KlawConfig } from "../config/types.klaw.js"; export type ChannelSummaryOptions = { colorize?: boolean; includeAllowFrom?: boolean; plugins?: readonly ChannelPlugin[]; sourceConfig?: KlawConfig; }; export declare function buildChannelSummary(cfg?: KlawConfig, options?: ChannelSummaryOptions): Promise;