import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostFoldersIdCopyInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostFoldersIdCopyInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostFoldersIdCopyInternalServerErrorData; constructor(err: PostFoldersIdCopyInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type PostFoldersIdCopyNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class PostFoldersIdCopyNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostFoldersIdCopyNotFoundErrorData; constructor(err: PostFoldersIdCopyNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostFoldersIdCopyUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostFoldersIdCopyUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostFoldersIdCopyUnauthorizedErrorData; constructor(err: PostFoldersIdCopyUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostFoldersIdCopyInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostFoldersIdCopyNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PostFoldersIdCopyUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=postfoldersidcopy.d.ts.map