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