import { tl } from '../../../tl/index.js'; import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike } from '../../types/index.js'; /** * Save or delete a draft message associated with some chat * * @param chatId ID of the chat, its username, phone or `"me"` or `"self"` * @param draft Draft message, or `null` to delete. */ export declare function saveDraft(client: ITelegramClient, chatId: InputPeerLike, draft: null | Omit): Promise;