import { MaybeArray } from '../../../types/utils.js'; import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike } from '../../types/index.js'; import { FactCheck } from '../../types/messages/fact-check.js'; /** * Get fact check information for one or more messages in a chat * * @param chatId Chat where the messages are located * @param msgIds One or more message IDs */ export declare function getFactCheck(client: ITelegramClient, chatId: InputPeerLike, msgIds: MaybeArray): Promise<(FactCheck | null)[]>;