import { PojoType } from "../../type/type"; export default class AspectInterceptor { private static inited; private instance; private hitMethods; constructor(instance?: PojoType); private init; getHitMethods(): void; beforeHandler(target: Function, ctx: any, args: Array): Promise; afterHandler(target: Function, ctx: any, args: Array, process: any): Promise; }