import { z } from 'zod';
export declare const PrintfulResponseError: z.ZodObject<{
    type: z.ZodString;
    status: z.ZodNumber;
    title: z.ZodString;
    detail: z.ZodString;
    instance: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    type?: string;
    status?: number;
    title?: string;
    detail?: string;
    instance?: string;
}, {
    type?: string;
    status?: number;
    title?: string;
    detail?: string;
    instance?: string;
}>;
export type PrintfulResponseError = z.infer<typeof PrintfulResponseError>;
