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