import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { InvoiceStatus } from "./invoicestatus.js"; export type Invoice = { status: InvoiceStatus; amountDue: number; pdfUrl: string; dueDate: Date; year: number; month: number; id: string; }; /** @internal */ export declare const Invoice$inboundSchema: z.ZodType; export declare function invoiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=invoice.d.ts.map