import { ErrorUnion, StickerSetUnion } from '../outputs'; /** * Searches for a sticker set by its name * @param {Object} params * @param {string} [params.name] - Name of the sticker set * @param {Object} state * @returns {StickerSetUnion | ErrorUnion} */ export declare type SearchStickerSetMethod = (params: SearchStickerSetParams, state?: Record) => Promise; export interface SearchStickerSetParams { /** Name of the sticker set */ name?: string; }