/**
 * @author WMXPY
 * @namespace Variable_NativeClass
 * @description Native Class Instance
 */
import { ISandbox } from "../../declare/sandbox";
export declare abstract class MarkedNativeClassInstance {
    abstract getMember(name: string, sandbox: ISandbox): any;
    abstract toNative(): any;
}
