import { z } from 'zod';
export declare const InvoiceDocument: z.ZodObject<{
    media_type: z.ZodString;
    content: z.ZodString;
    _links: z.ZodObject<{
        self: z.ZodObject<{
            href: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            href?: string;
        }, {
            href?: string;
        }>;
        order: z.ZodObject<{
            href: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            href?: string;
        }, {
            href?: string;
        }>;
    }, "strip", z.ZodTypeAny, {
        self?: {
            href?: string;
        };
        order?: {
            href?: string;
        };
    }, {
        self?: {
            href?: string;
        };
        order?: {
            href?: string;
        };
    }>;
}, "strip", z.ZodTypeAny, {
    _links?: {
        self?: {
            href?: string;
        };
        order?: {
            href?: string;
        };
    };
    media_type?: string;
    content?: string;
}, {
    _links?: {
        self?: {
            href?: string;
        };
        order?: {
            href?: string;
        };
    };
    media_type?: string;
    content?: string;
}>;
export type InvoiceDocument = z.infer<typeof InvoiceDocument>;
