import * as z from "zod/v4-mini"; export type RecalculateInvoiceV2Request = { /** * Invoice ID */ id: string; /** * Whether to finalize the invoice after recalculation (default: true) */ finalize?: boolean | undefined; }; /** @internal */ export type RecalculateInvoiceV2Request$Outbound = { id: string; finalize?: boolean | undefined; }; /** @internal */ export declare const RecalculateInvoiceV2Request$outboundSchema: z.ZodMiniType; export declare function recalculateInvoiceV2RequestToJSON(recalculateInvoiceV2Request: RecalculateInvoiceV2Request): string; //# sourceMappingURL=recalculate-invoice-v2-op.d.ts.map