import { Client } from '../clients/client'; import { MarketName } from '../types/api'; export declare class StatsEndpoints { private _client; constructor(client: Client); /** * Shows the total number of subscribed users to Envato Market. */ getTotalUsers(): Promise; /** * Shows the total number of items available on Envato Market. */ getTotalItems(): Promise; /** * Shows the total number of items available on Envato Market. * * @param site Site. */ getFilesPerCategory(site: MarketName): Promise; } export interface IFilesPerCategoryResponse extends Array<{ category: string; number_of_files: string; url: string; }> { }