import type { SubjectProxyTarget } from "./createSubjectHandler"; import type { SubjectProxy } from "./SubjectProxy"; import type { ArrayProxy } from "../arrayProxy/ArrayProxy"; import type { ProxyContext } from "../ProxyContext"; export declare function getValueForKey(target: SubjectProxyTarget, key: string | symbol, proxyContext: ProxyContext): SubjectProxy | ArrayProxy | string | number | boolean | undefined;