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; requireParameter(name: string): Parameter; findParameter(name: string): Parameter | undefined; get parameters(): Parameter[]; isDecoratedWithIgnoreCase(decoratorName: string): boolean; private get decorators(); } //# sourceMappingURL=method.d.ts.map