/**
 * Copyright IBM Corp. 2024, 2025
 */
import { Severity } from '../enums/aplication.enum.js';
import { IRange } from './lint-range.model.js';
export interface IlintResponse {
    code: string | number;
    message: string;
    severity: Severity;
    range: IRange;
    path: Array<string | number>;
    ruleset?: string;
}
//# sourceMappingURL=lint-response.model.d.ts.map