import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class StatsAccount extends ClientSDK { /** * Show Current Account Stats * * @remarks * Retrieve account-wide video stats. Get statistics like the number of video loads, plays, and hours watched for the entire account. * * * ## Requires api token with one of the following permissions * ``` * Read detailed stats * ``` * */ get(options?: RequestOptions): Promise; /** * Show Account Stats by Date * * @remarks * Retrieve account-wide stats organized by day, between a start and end date parameter (inclusive). If start and end date are not provided, defaults to yesterday and today. * * * ## Requires api token with one of the following permissions * ``` * Read detailed stats * ``` * */ getStatsAccountByDate(request?: operations.GetStatsAccountByDateRequest | undefined, options?: RequestOptions): Promise>; } //# sourceMappingURL=statsaccount.d.ts.map