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