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