import * as grammy from "grammy"; import type { OpenClawConfig } from "agdi/plugin-sdk/config-runtime"; import type { RuntimeEnv } from "agdi/plugin-sdk/runtime-env"; export declare function startTelegramWebhook(opts: { token: string; accountId?: string; config?: OpenClawConfig; path?: string; port?: number; host?: string; secret?: string; runtime?: RuntimeEnv; fetch?: typeof fetch; abortSignal?: AbortSignal; healthPath?: string; publicUrl?: string; webhookCertPath?: string; }): Promise<{ server: import("node:http").Server; bot: grammy.Bot>; stop: () => void; }>;