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