import type { ApiClient } from '../../core/ApiClient'; import type { ListQuery, Paginated, HasGetMany } from '../../core/types'; import type { StickerUser } from './types'; export declare class StickerUsersApi implements HasGetMany { private readonly client; constructor(client: ApiClient); /** * Returns a paginated list of sticker-user associations with their related file. * @permissions stickers.send */ getMany(query: ListQuery & { paginate: false; }, headers?: Record): Promise; getMany(query?: ListQuery & { paginate?: true; }, headers?: Record): Promise>; } //# sourceMappingURL=StickerUsersApi.d.ts.map