import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike, InputStickerSet } from '../../types/index.js';
/**
 * Set group sticker set for a supergroup
 *
 * @param setId  Sticker set short name or a TL object with input sticker set
 * @param thumb  Sticker set thumbnail
 * @param params
 * @returns  Modified sticker set
 */
export declare function setChatStickerSet(client: ITelegramClient, chatId: InputPeerLike, setId: InputStickerSet): Promise<void>;
