import type { EvaluationContext } from '@openfeature/web-sdk'; import type { LDContext, LDLogger } from 'launchdarkly-js-client-sdk'; /** * Convert an OpenFeature evaluation context into an LDContext. * @param logger Logger. * @param evalContext The OpenFeature evaluation context to translate. * @returns An LDContext based on the evaluation context. * * @internal */ export default function translateContext(logger: LDLogger, evalContext: EvaluationContext): LDContext;