import { ErrorUnion, OkUnion } from '../outputs'; /** * Installs/uninstalls or activates/archives a sticker set * @param {Object} params * @param {string} [params.setId] - Identifier of the sticker set * @param {boolean} [params.isInstalled] - The new value of is_installed * @param {boolean} [params.isArchived] - The new value of is_archived. A sticker * set can't be installed and archived simultaneously * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type ChangeStickerSetMethod = (params: ChangeStickerSetParams, state?: Record) => Promise; export interface ChangeStickerSetParams { /** Identifier of the sticker set */ setId?: string; /** The new value of is_installed */ isInstalled?: boolean; /** The new value of is_archived. A sticker set can't be installed and archived simultaneously */ isArchived?: boolean; }