import type { EggProtoImplClass } from '../core-decorator'; import type { IAdvice } from './Advice'; export interface AdviceInfo { clazz: EggProtoImplClass; order: number; adviceParams: any; } export interface AspectAdvice { name: string; clazz: EggProtoImplClass; adviceParams: any; } export declare const ASPECT_LIST: unique symbol;