import { ITelegramClient } from '../../client.types.js';
import { BusinessConnection } from '../../types/premium/business-connection.js';
/**
 * Get information about the connection of the bot with a business account
 *
 * @param connectionId  ID of the business connection
 */
export declare function getBusinessConnection(client: ITelegramClient, connectionId: string): Promise<BusinessConnection>;
