import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type FlagJSONValue = string | number | Array<FlagJSONValue | null> | {
    [k: string]: FlagJSONValue | null;
} | boolean;
/** @internal */
export declare const FlagJSONValue$inboundSchema: z.ZodType<FlagJSONValue, z.ZodTypeDef, unknown>;
export declare function flagJSONValueFromJSON(jsonString: string): SafeParseResult<FlagJSONValue, SDKValidationError>;
//# sourceMappingURL=flagjsonvalue.d.ts.map