import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type WebhookDtoInvoiceLineItem = { amount?: string | undefined; displayName?: string | undefined; id?: string | undefined; periodEnd?: Date | undefined; periodStart?: Date | undefined; planDisplayName?: string | undefined; priceId?: string | undefined; quantity?: string | undefined; }; /** @internal */ export declare const WebhookDtoInvoiceLineItem$inboundSchema: z.ZodMiniType; export declare function webhookDtoInvoiceLineItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-invoice-line-item.d.ts.map