import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SandboxPriceRate, SandboxPriceRate$Outbound } from "./sandboxpricerate.js"; export type SandboxPricingCard = { object?: "sandbox.pricing" | undefined; rates?: { [k: string]: SandboxPriceRate; } | undefined; updatedAt?: Date | null | undefined; updatedBy?: string | null | undefined; }; /** @internal */ export declare const SandboxPricingCard$inboundSchema: z.ZodType; /** @internal */ export type SandboxPricingCard$Outbound = { object: "sandbox.pricing"; rates?: { [k: string]: SandboxPriceRate$Outbound; } | undefined; updated_at?: string | null | undefined; updated_by?: string | null | undefined; }; /** @internal */ export declare const SandboxPricingCard$outboundSchema: z.ZodType; export declare function sandboxPricingCardToJSON(sandboxPricingCard: SandboxPricingCard): string; export declare function sandboxPricingCardFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sandboxpricingcard.d.ts.map