import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type PriceUnitResponse = { baseCurrency?: string | undefined; code?: string | undefined; conversionRate?: string | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; environmentId?: string | undefined; id?: string | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; status?: Status | undefined; symbol?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const PriceUnitResponse$inboundSchema: z.ZodMiniType; export declare function priceUnitResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=price-unit-response.d.ts.map