import { ReplyMarkupInputUnion } from '../inputs'; import { ErrorUnion, OkUnion } from '../outputs'; /** * Edits the reply markup of an inline message sent via a bot; for bots only * @param {Object} params * @param {string} [params.inlineMessageId] - Inline message identifier * @param {ReplyMarkupInputUnion} [params.replyMarkup] - The new message reply markup * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type EditInlineMessageReplyMarkupMethod = (params: EditInlineMessageReplyMarkupParams, state?: Record) => Promise; export interface EditInlineMessageReplyMarkupParams { /** Inline message identifier */ inlineMessageId?: string; /** The new message reply markup */ replyMarkup?: ReplyMarkupInputUnion; }