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