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