import * as z from "zod/v4-mini"; /** * A price that already exists for this product. * * @remarks * * Useful when updating a product if you want to keep an existing price. */ export type ExistingProductPrice = { id: string; }; /** @internal */ export type ExistingProductPrice$Outbound = { id: string; }; /** @internal */ export declare const ExistingProductPrice$outboundSchema: z.ZodMiniType; export declare function existingProductPriceToJSON(existingProductPrice: ExistingProductPrice): string; //# sourceMappingURL=existingproductprice.d.ts.map