import { AroundMetadata } from '../metadatas/index'; import { IAdviceDecorator } from './Advice'; export interface IAroundDecorator extends IAdviceDecorator { (pointcut?: string | RegExp, args?: string, returning?: string, throwing?: string, annotation?: string): MethodDecorator; } export declare const Around: IAroundDecorator;