declare const SUPPORTED_CHANNEL_IDS: readonly ["telegram", "hub"]; export { SUPPORTED_CHANNEL_IDS }; export type SupportedChannelId = (typeof SUPPORTED_CHANNEL_IDS)[number]; export declare function isSupportedChannelId(raw?: string | null): raw is SupportedChannelId; export declare function filterSupportedChannelEntries(entries: T[]): T[];