import type { ConfigValue, ConfigEvaluationMetadata, EvaluatedValue, EvaluationPayload } from "./types"; /** * Parsed config entry — holds the parsed value, its type, raw server value, and metadata. */ export declare class Config { key: string; value: ConfigValue; type: string; rawValue: EvaluatedValue | undefined; configEvaluationMetadata: ConfigEvaluationMetadata | undefined; constructor(key: string, value: ConfigValue, type: string, rawValue?: EvaluatedValue, metadata?: ConfigEvaluationMetadata); /** * Parse the server evaluation payload into a map of Config objects. */ static digest(payload: EvaluationPayload): { [key: string]: Config; }; }