import { ErrorUnion, StickerSetsUnion } from '../outputs'; /** * Returns a list of archived sticker sets * @param {Object} params * @param {boolean} [params.isMasks] - Pass true to return mask stickers sets; pass * false to return ordinary sticker sets * @param {string} [params.offsetStickerSetId] - Identifier of the sticker set from * which to return the result * @param {number} [params.limit] - Maximum number of sticker sets to return * @param {Object} state * @returns {StickerSetsUnion | ErrorUnion} */ export declare type GetArchivedStickerSetsMethod = (params: GetArchivedStickerSetsParams, state?: Record) => Promise; export interface GetArchivedStickerSetsParams { /** Pass true to return mask stickers sets; pass false to return ordinary sticker sets */ isMasks?: boolean; /** Identifier of the sticker set from which to return the result */ offsetStickerSetId?: string; /** Maximum number of sticker sets to return */ limit?: number; }