import { ITelegramClient } from '../../client.types.js'; import { ArrayPaginated } from '../../types/utils.js'; import { default as Long } from 'long'; import { StickerSet } from '../../types/misc/sticker-set.js'; /** * Get the list of sticker sets that were created by the current user */ export declare function getMyStickerSets(client: ITelegramClient, params?: { /** Offset for pagination */ offset?: Long; /** Limit for pagination */ limit?: number; }): Promise>;