import type { SKYKOIConfig } from "../config/config.js"; import type { TelegramAccountConfig } from "../config/types.js"; export type ResolvedTelegramAccount = { accountId: string; enabled: boolean; name?: string; token: string; tokenSource: "env" | "tokenFile" | "config" | "none"; config: TelegramAccountConfig; }; export declare function listTelegramAccountIds(cfg: SKYKOIConfig): string[]; export declare function resolveDefaultTelegramAccountId(cfg: SKYKOIConfig): string; export declare function resolveTelegramAccount(params: { cfg: SKYKOIConfig; accountId?: string | null; }): ResolvedTelegramAccount; export declare function listEnabledTelegramAccounts(cfg: SKYKOIConfig): ResolvedTelegramAccount[];