import type { LintableNode, LintRule } from "./rule.js"; /** * Creates a function that can be used to report lint issues. */ export declare const createReportFunction: (_args: { id: LintRule["id"]; level: LintRule["level"]; }) => (args: { node: LintableNode; message: string; }) => void; //# sourceMappingURL=report.d.ts.map