import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetAccountDetailsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetAccountDetailsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAccountDetailsInternalServerErrorData; constructor(err: GetAccountDetailsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetAccountDetailsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetAccountDetailsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAccountDetailsUnauthorizedErrorData; constructor(err: GetAccountDetailsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetAccountDetailsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAccountDetailsUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=getaccountdetails.d.ts.map