export declare class ClassTool { /** * @param target * @returns prototype chain, exclude Object.prototype and Function */ static getPrototypes(target: Object): any[]; static getOwnerFunctionKeys(target: Object): string[]; static getFunctionKeys(target: Object): string[]; }