import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ChangedLineItemAction } from "./changed-line-item-action.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type ChangedLineItem = { /** * created | updated | ended */ changeAction?: ChangedLineItemAction | undefined; endDate?: Date | undefined; id?: string | undefined; priceId?: string | undefined; quantity?: string | undefined; startDate?: Date | undefined; }; /** @internal */ export declare const ChangedLineItem$inboundSchema: z.ZodMiniType; export declare function changedLineItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=changed-line-item.d.ts.map