import * as z from "zod/v4-mini"; import * as models from "../index.js"; import { InterfereHTTPError } from "./interfere-http-error.js"; export type ReleaseSignFileTooLargeErrorData = { code: "RELEASE_SIGN_FILE_TOO_LARGE"; message?: string | undefined; service?: models.ReleaseSignFileTooLargeErrorService | undefined; details: models.ReleaseSignFileTooLargeDetails; }; export declare class ReleaseSignFileTooLargeError extends InterfereHTTPError { code: "RELEASE_SIGN_FILE_TOO_LARGE"; service?: models.ReleaseSignFileTooLargeErrorService | undefined; details: models.ReleaseSignFileTooLargeDetails; /** The original data that was passed to this error instance. */ data$: ReleaseSignFileTooLargeErrorData; constructor(err: ReleaseSignFileTooLargeErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ReleaseSignFileTooLargeError$inboundSchema: z.ZodMiniType;