import { MessageCreator } from './MessageCreator'; import { MessageCreatorTypes, SendTypes } from '../../types'; export declare class ChatDescription extends MessageCreator { readonly description: string; readonly chatId?: number | string; sendType: SendTypes; type: MessageCreatorTypes; /** * Set chat title * @param description Description you want to set for the chat * @param chatId Optional. Chat ID where you want to set chat description. It can be id of group/channel or ID of the user. Current chat id by default * @see https://core.telegram.org/bots/api#setchatdescription * */ constructor(description: string, chatId?: number | string); }