import OperationProcessor from "../processors/operation-processor"; import { OperationDecorator } from "../types"; export declare function getArgument(argsList: any[], match: (arg: any) => boolean): T; export default function decorateWith(decorator: OperationDecorator, ...decoratorArgs: any[]): (target: OperationProcessor | Function, propertyKey?: string, descriptor?: TypedPropertyDescriptor) => any;