import { ErrorUnion, OkUnion } from '../outputs'; /** * Changes the order of installed sticker sets * @param {Object} params * @param {boolean} [params.isMasks] - Pass true to change the order of mask sticker * sets; pass false to change the order of ordinary sticker sets * @param {string[]} [params.stickerSetIds] - Identifiers of installed sticker sets * in the new correct order * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type ReorderInstalledStickerSetsMethod = (params: ReorderInstalledStickerSetsParams, state?: Record) => Promise; export interface ReorderInstalledStickerSetsParams { /** * Pass true to change the order of mask sticker sets; pass false to change the order * of ordinary sticker sets */ isMasks?: boolean; /** Identifiers of installed sticker sets in the new correct order */ stickerSetIds?: string[]; }