import type { ArrayProxy } from "../arrayProxy/ArrayProxy"; import type { SubjectProxy } from "../subjectProxy/SubjectProxy"; import type { ObjectLike } from "../types"; export declare function isProxy(someObject?: unknown): someObject is ArrayProxy | SubjectProxy; export declare function getProxyFromObject(object: ObjectLike | ObjectLike[]): SubjectProxy | ArrayProxy;