import type { RemoteClawConfig } from "../../../src/config/config.js"; import type { TelegramAccountConfig } from "../../../src/config/types.telegram.js"; export type TelegramCredentialStatus = "available" | "configured_unavailable" | "missing"; export type InspectedTelegramAccount = { accountId: string; enabled: boolean; name?: string; token: string; tokenSource: "env" | "tokenFile" | "config" | "none"; tokenStatus: TelegramCredentialStatus; configured: boolean; config: TelegramAccountConfig; }; export declare function inspectTelegramAccount(params: { cfg: RemoteClawConfig; accountId?: string | null; envToken?: string | null; }): InspectedTelegramAccount;