import { normalizeChatChannelId, type ChatChannelId } from "./ids.js"; import type { ChannelId } from "./plugins/channel-id.types.js"; import type { ChannelMeta } from "./plugins/types.core.js"; export { getChatChannelMeta } from "./chat-meta.js"; export { CHAT_CHANNEL_ORDER } from "./ids.js"; export type { ChatChannelId } from "./ids.js"; export { normalizeChatChannelId }; export declare function normalizeChannelId(raw?: string | null): ChatChannelId | null; export declare function normalizeAnyChannelId(raw?: string | null): ChannelId | null; export declare function listRegisteredChannelPluginIds(): ChannelId[]; export declare function getRegisteredChannelPluginMeta(id: string): Pick | null; export declare function formatChannelPrimerLine(meta: ChannelMeta): string; export declare function formatChannelSelectionLine(meta: ChannelMeta, docsLink: (path: string, label?: string) => string): string;