import { Loader } from "./loader"; export interface FileLoaderOption { fileRoot?: string; checkUnderFileRoot?: boolean; } export declare class FileLoader implements Loader { private opts; private preloadCache; constructor(opts: FileLoaderOption); load(filePath: string): Promise; relativePath(filePath: string): string; resolvePath(filePath: string): string; isUnderFileRoot(filePath: string): boolean; writeFile(filePath: string, content: string): Promise; appendFile(filePath: string, content: string): Promise; preloadExtraFile(filePath: string, content: string): void; } //# sourceMappingURL=fileLoader.d.ts.map