import { ITelegramClient } from '../../client.types.js'; import { InputText } from '../../types/index.js'; import { BusinessChatLink } from '../../types/premium/business-chat-link.js'; /** * Create a new business chat link * * @param text Text to be inserted into the message input */ export declare function createBusinessChatLink(client: ITelegramClient, text: InputText, params?: { /** Custom title for the link */ title?: string; }): Promise;