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