export declare const DEFAULT_THEMES_DIR = "themes";
export declare const DEFAULT_PUBLISH_DIR = "public";
export declare class Dir {
    private readonly workingDir;
    private readonly themesDir;
    private readonly publishDir;
    constructor(workingDir: string, themesDir: string, publishDir?: string);
    getWorkingDir(): string;
    getThemesDir(): string;
    getThemesCacheDir(): string;
    getPublishDir(): string;
}
export declare function newDir(workingDir: string, themesDir: string, publishDir: string): Dir;
//# sourceMappingURL=dir.d.ts.map