import { AdviceDefinition, MethodInvocation } from './advice';
import { IntentHandler } from '../intent/intent-handler';
export declare function combineAdvice(...advices: AdviceDefinition[]): (mi: MethodInvocation, ih: IntentHandler) => Promise<any>;