import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Update = { /** * Set of 16 key-value pairs to update. */ metadata: { [k: string]: string; }; }; /** @internal */ export declare const Update$inboundSchema: z.ZodType; /** @internal */ export type Update$Outbound = { metadata: { [k: string]: string; }; }; /** @internal */ export declare const Update$outboundSchema: z.ZodType; export declare function updateToJSON(update: Update): string; export declare function updateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=update.d.ts.map