/** * `franklin telegram` — start the Telegram ingress bot. * * Designed to run on a server / always-on laptop. Reads the bot token and * owner id from env (or falls back to ~/.blockrun/config). Uses trust-mode * permissions because the operator is remote — there's no terminal prompt * they can answer per tool call. The owner lock in `runTelegramBot` is the * real security boundary. */ interface TelegramCommandOptions { model?: string; debug?: boolean; } export declare function telegramCommand(opts: TelegramCommandOptions): Promise; export {};