import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ClearOrgPriceRequest = { orgId: string; model: string; }; /** @internal */ export declare const ClearOrgPriceRequest$inboundSchema: z.ZodType; /** @internal */ export type ClearOrgPriceRequest$Outbound = { orgId: string; model: string; }; /** @internal */ export declare const ClearOrgPriceRequest$outboundSchema: z.ZodType; export declare function clearOrgPriceRequestToJSON(clearOrgPriceRequest: ClearOrgPriceRequest): string; export declare function clearOrgPriceRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=clearorgprice.d.ts.map