/** * Infer the intended type of a config value from its raw string representation. * Mirrors openclaw-style parseConfigValue behavior. */ export type ParsedConfigValue = { ok: true; value: unknown; } | { ok: false; error: string; }; export declare function parseConfigValue(raw: string): ParsedConfigValue;