import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ComputeSecretCreate = { data: { [k: string]: string; }; name: string; }; /** @internal */ export declare const ComputeSecretCreate$inboundSchema: z.ZodType; /** @internal */ export type ComputeSecretCreate$Outbound = { data: { [k: string]: string; }; name: string; }; /** @internal */ export declare const ComputeSecretCreate$outboundSchema: z.ZodType; export declare function computeSecretCreateToJSON(computeSecretCreate: ComputeSecretCreate): string; export declare function computeSecretCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computesecretcreate.d.ts.map