import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListOrgPricesRequest = { orgId: string; model?: string | undefined; }; /** @internal */ export declare const ListOrgPricesRequest$inboundSchema: z.ZodType; /** @internal */ export type ListOrgPricesRequest$Outbound = { orgId: string; model?: string | undefined; }; /** @internal */ export declare const ListOrgPricesRequest$outboundSchema: z.ZodType; export declare function listOrgPricesRequestToJSON(listOrgPricesRequest: ListOrgPricesRequest): string; export declare function listOrgPricesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listorgprices.d.ts.map