import * as z from "zod"; import { Result as SafeParseResult } from "../../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The base or virtual document referred to by the URL path. If the path is undefined, this key will be omitted. */ export type Result = boolean | string | number | Array | { [k: string]: any; }; /** @internal */ export declare const Result$inboundSchema: z.ZodType; /** @internal */ export type Result$Outbound = boolean | string | number | Array | { [k: string]: any; }; /** @internal */ export declare const Result$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Result$ { /** @deprecated use `Result$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Result$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Result$Outbound` instead. */ type Outbound = Result$Outbound; } export declare function resultToJSON(result: Result): string; export declare function resultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=result.d.ts.map