export interface PathProvider { cwd(...path: string[]): string; ext(...path: string[]): string; boilerplate(...path: string[]): string; requestedDir(...path: string[]): string | null; } interface Paths { ext: string; requestedDir?: string; } export declare class PathFsProvider implements PathProvider { private paths; constructor(paths: Paths); cwd(...path: string[]): string; ext(...path: string[]): string; boilerplate(...path: string[]): string; requestedDir(...path: string[]): string | null; } export {};