import { ErrorUnion, OkUnion } from '../outputs'; /** * Informs the server that some trending sticker sets have been viewed by the user * @param {Object} params * @param {string[]} [params.stickerSetIds] - Identifiers of viewed trending sticker * sets * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type ViewTrendingStickerSetsMethod = (params: ViewTrendingStickerSetsParams, state?: Record) => Promise; export interface ViewTrendingStickerSetsParams { /** Identifiers of viewed trending sticker sets */ stickerSetIds?: string[]; }