import { PrivateConfigClass } from '../common/config/private/PrivateConfigClass'; export declare class ProjectPathClass { Root: string; ImageFolder: string; TempFolder: string; TranscodedFolder: string; FacesFolder: string; FrontendFolder: string; ExtensionFolder: string; DBFolder: string; private cfg; init(cfg: PrivateConfigClass): void; normalizeRelative(pathStr: string): string; getAbsolutePath(pathStr: string): string; getRelativePathToImages(pathStr: string): string; reset(): void; } export declare const ProjectPath: ProjectPathClass;