import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OracleDescriptor = { /** * The dot-delimited path to the parsed value from the error received when the initial handshake is refused. */ key?: string | undefined; /** * The parsed value from the error received when the initial handshake is refused. */ value?: string | undefined; }; /** @internal */ export declare const OracleDescriptor$inboundSchema: z.ZodType; export declare function oracleDescriptorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=oracledescriptor.d.ts.map