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