import type { TSESTree } from '@typescript-eslint/types';
import { Parameter } from './parameter';
export declare class Method {
    readonly node: TSESTree.MethodDefinition;
    constructor(node: TSESTree.MethodDefinition);
    get name(): string;
    get parameters(): Parameter[];
    isDecoratedWithIgnoreCase(decoratorName: string): boolean;
    private get decorators();
}
//# sourceMappingURL=method.d.ts.map