import { InputFileInputUnion } from '../inputs'; import { ErrorUnion, StickerEmojisUnion } from '../outputs'; /** * Returns emoji corresponding to a sticker * @param {Object} params * @param {InputFileInputUnion} [params.sticker] - Sticker file identifier * @param {Object} state * @returns {StickerEmojisUnion | ErrorUnion} */ export declare type GetStickerEmojisMethod = (params: GetStickerEmojisParams, state?: Record) => Promise; export interface GetStickerEmojisParams { /** Sticker file identifier */ sticker?: InputFileInputUnion; }