import { SubjectProxyTarget } from "./createSubjectHandler"; import { SubjectProxy } from "./SubjectProxy"; import { ArrayProxy } from "../arrayProxy/ArrayProxy"; import { ProxyContext } from "../ProxyContext"; /** * Given a subject target and a key return the correct value */ export declare function getValueForKey(target: SubjectProxyTarget, key: string | symbol, proxyContext: ProxyContext): SubjectProxy | ArrayProxy | string | number | boolean | undefined;