import { ExplicitVolumeSpecification } from './Build/WriteResources'; import { ProjectConfig } from './ProjectConfig'; export declare class Project { basePath: string; config: ProjectConfig; constructor(basePath: string, config?: ProjectConfig); get projectConfigPath(): string; get sourcePath(): string; get destinationPath(): string; get wordListSourcePath(): string; get objectListSourcePath(): string; get explicitVolumeConfigPath(): string; readExplicitVolumeConfig(): ExplicitVolumeSpecification[]; }