///
import { File as IFile } from './interfaces';
export interface ConstructOptions {
stat: () => Promise;
content: () => Promise;
}
export declare class File implements IFile {
readonly path: IFile['path'];
private _options;
constructor(path: IFile['path'], _options: ConstructOptions);
readonly content: Promise;
readonly stats: Promise;
}
//# sourceMappingURL=File.d.ts.map