///
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { Path, PathFragment, virtualFs } from '@angular-devkit/core';
import { Stats } from 'fs';
import { Observable } from 'rxjs';
import { InputFileSystem } from 'webpack';
export declare class WebpackInputHost implements virtualFs.Host {
readonly inputFileSystem: InputFileSystem;
constructor(inputFileSystem: InputFileSystem);
readonly capabilities: virtualFs.HostCapabilities;
write(_path: Path, _content: virtualFs.FileBufferLike): Observable;
delete(_path: Path): Observable;
rename(_from: Path, _to: Path): Observable;
read(path: Path): Observable;
list(path: Path): Observable;
exists(path: Path): Observable;
isDirectory(path: Path): Observable;
isFile(path: Path): Observable;
stat(path: Path): Observable;
watch(_path: Path, _options?: virtualFs.HostWatchOptions): null;
}