import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostChannelsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostChannelsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostChannelsInternalServerErrorData; constructor(err: PostChannelsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PostChannelsForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PostChannelsForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostChannelsForbiddenErrorData; constructor(err: PostChannelsForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostChannelsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostChannelsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostChannelsUnauthorizedErrorData; constructor(err: PostChannelsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostChannelsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostChannelsForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PostChannelsUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=postchannels.d.ts.map