import { CHAT_CHANNEL_ALIASES, getChatChannelMeta, listChatChannelAliases, listChatChannels, normalizeChatChannelId, type ChatChannelMeta } from "./chat-meta.js"; import { type ChatChannelId } from "./ids.js"; import type { ChannelId, ChannelMeta } from "./plugins/types.js"; export { CHANNEL_IDS, CHAT_CHANNEL_ORDER } from "./ids.js"; export type { ChatChannelId } from "./ids.js"; export { CHAT_CHANNEL_ALIASES, getChatChannelMeta, listChatChannelAliases, listChatChannels, 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 listRegisteredChannelPluginAliases(): string[]; export declare function getRegisteredChannelPluginMeta(id: string): Pick | null; export declare function formatChannelPrimerLine(meta: ChatChannelMeta): string; export declare function formatChannelSelectionLine(meta: ChatChannelMeta, docsLink: (path: string, label?: string) => string): string;