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 PostMultipartBadRequestErrorData = { error?: operations.PostMultipartError | undefined; }; /** * Error due to reaching the video limit of your account or other issues. */ export declare class PostMultipartBadRequestError extends WistiaError { error?: operations.PostMultipartError | undefined; /** The original data that was passed to this error instance. */ data$: PostMultipartBadRequestErrorData; constructor(err: PostMultipartBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostMultipartBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=postmultipart.d.ts.map