import type { ChannelGatewayAdapter } from '@xopcai/xopc/channels/plugin-types.js'; import type { TelegramResolvedAccount } from './types.js'; export declare function createTelegramGatewayAdapter(handlers: { startAccount: (account: TelegramResolvedAccount) => Promise; stopAccount: (accountId: string) => Promise; }): ChannelGatewayAdapter;