import { ErrorUnion, StickerSetUnion } from '../outputs'; /** * Returns information about a sticker set by its identifier * @param {Object} params * @param {string} [params.setId] - Identifier of the sticker set * @param {Object} state * @returns {StickerSetUnion | ErrorUnion} */ export declare type GetStickerSetMethod = (params: GetStickerSetParams, state?: Record) => Promise; export interface GetStickerSetParams { /** Identifier of the sticker set */ setId?: string; }