import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class StatsVisitors extends ClientSDK { /** * List Visitors * * @remarks * This endpoint provides a list of visitors that have watched videos in your account. * * * ## Requires api token with one of the following permissions * ``` * Read detailed stats * ``` * */ list(request?: operations.GetStatsVisitorsRequest | undefined, options?: RequestOptions): Promise>; /** * Show Visitor * * @remarks * This endpoint provides detailed information about a specific visitor. * * * ## Requires api token with one of the following permissions * ``` * Read detailed stats * ``` * */ get(request: operations.GetStatsVisitorsVisitorKeyRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=statsvisitors.d.ts.map