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