import type { TSESTree } from '@typescript-eslint/types';
import type { Context } from '../../dto/context';
type Report = {
    isError: boolean;
    path?: string[];
    node?: TSESTree.Node;
};
export declare class ErrorReporter {
    private context;
    constructor(context: Context);
    report({ isError, path, node }: Report): void;
}
export {};
//# sourceMappingURL=errorReporter.d.ts.map