import * as z from "zod/v3"; import * as operations from "../operations/index.js"; import { WistiaError } from "./wistiaerror.js"; /** * Error due to reaching the video limit of your account or other issues. */ export type PostFormBadRequestErrorData = { error?: operations.PostFormError | undefined; }; /** * Error due to reaching the video limit of your account or other issues. */ export declare class PostFormBadRequestError extends WistiaError { error?: operations.PostFormError | undefined; /** The original data that was passed to this error instance. */ data$: PostFormBadRequestErrorData; constructor(err: PostFormBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostFormBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=postform.d.ts.map