import MessageNode from "./index"; export interface IProxyable { [key: string]: any; $$objectID: number; $$path?: string[]; $$cache: { [key: string]: any; }; $$type: "prop"; $$messageNode: MessageNode; } /** * 用于代理Promise, await等异步文方法的标志符 */ export declare const asyncProxyIdentifierMap: { [key: string]: boolean; };