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