import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetStatsVisitorsVisitorKeyInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetStatsVisitorsVisitorKeyInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetStatsVisitorsVisitorKeyInternalServerErrorData; constructor(err: GetStatsVisitorsVisitorKeyInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type GetStatsVisitorsVisitorKeyForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class GetStatsVisitorsVisitorKeyForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetStatsVisitorsVisitorKeyForbiddenErrorData; constructor(err: GetStatsVisitorsVisitorKeyForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetStatsVisitorsVisitorKeyUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetStatsVisitorsVisitorKeyUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetStatsVisitorsVisitorKeyUnauthorizedErrorData; constructor(err: GetStatsVisitorsVisitorKeyUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetStatsVisitorsVisitorKeyInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetStatsVisitorsVisitorKeyForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const GetStatsVisitorsVisitorKeyUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=getstatsvisitorsvisitorkey.d.ts.map