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