import { VercelCore } from "../core.js";
import { RequestOptions } from "../lib/sdks.js";
import { CountPageviewsRequest, CountPageviewsResponseBody } from "../models/countpageviewsop.js";
import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/httpclienterrors.js";
import { ResponseValidationError } from "../models/responsevalidationerror.js";
import { SDKValidationError } from "../models/sdkvalidationerror.js";
import { VercelError } from "../models/vercelerror.js";
import { APIPromise } from "../types/async.js";
import { Result } from "../types/fp.js";
/**
 * Counts page views
 *
 * @remarks
 * Counts the number of page views on a project (production only), since Web Analytics was enabled. Results can be filtered on supported dimensions.
 *
 * If set, this operation will use {@link Security.bearerToken} from the global security.
 */
export declare function webAnalyticsCountPageviews(client: VercelCore, request: CountPageviewsRequest, options?: RequestOptions): APIPromise<Result<CountPageviewsResponseBody, VercelError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
//# sourceMappingURL=webAnalyticsCountPageviews.d.ts.map