import { ErrorUnion, StickerSetsUnion } from '../outputs'; /** * Searches for ordinary sticker sets by looking for specified query in their title * and name. Excludes installed sticker sets from the results * @param {Object} params * @param {string} [params.query] - Query to search for * @param {Object} state * @returns {StickerSetsUnion | ErrorUnion} */ export declare type SearchStickerSetsMethod = (params: SearchStickerSetsParams, state?: Record) => Promise; export interface SearchStickerSetsParams { /** Query to search for */ query?: string; }