import { StickerSetInfo } from '@airgram-dev/core'; /** Represents a list of sticker sets */ export declare class StickerSetsBaseModel { _: 'stickerSets'; /** Approximate total number of sticker sets found */ totalCount: number; /** List of sticker sets */ sets: StickerSetInfo[]; }