import { MaybeArray } from '../../../types/utils.js'; import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike, Message } from '../../types/index.js'; /** * Get scheduled messages in chat by their IDs * * For messages that were not found, `null` will be * returned at that position. * * @param chatId Chat's marked ID, its username, phone or `"me"` or `"self"` * @param messageIds Scheduled messages IDs */ export declare function getScheduledMessages(client: ITelegramClient, chatId: InputPeerLike, messageIds: MaybeArray): Promise<(Message | null)[]>;