import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike } from '../../types/index.js'; /** * Change chat description * * You must be an administrator and have the appropriate permissions. * * @param chatId Chat ID or username * @param description New chat description, 0-255 characters */ export declare function setChatDescription(client: ITelegramClient, chatId: InputPeerLike, description: string): Promise;