import { type Options } from '../options.js';
import { File } from './file.js';
declare class EslintConfig extends File {
    constructor(path: string, options: Options);
    process(): this;
    private sourceFile;
}
export { EslintConfig };
