import { ClazzType } from '../../interface/declare';
import Method from '../../interface/Method';
import Pointcut from './Pointcut';
export default class FunctionExpressionPointcut extends Pointcut {
    private expression;
    setExpression(expression: FunctionExpressionPointcut['matches']): void;
    matches(clazz: ClazzType, method: Method): boolean;
}
