import { type CodeFixAction, Node } from 'typescript'; import type { CodeFix, DiagnosticWithContext } from '../types.js'; export declare class AddErrorTypeGuardCodeFix implements CodeFix { getErrorCodes: () => number[]; getCodeAction(diagnostic: DiagnosticWithContext): CodeFixAction | undefined; /** * Checks if the `node` is a part of property access expression and is a member of the `Error` interface */ isPropertyOfErrorInterface(node: Node): boolean; } //# sourceMappingURL=addErrorTypeGuard.d.ts.map