export declare class ContentFilePath { private _chunks; readonly filePath: string; readonly directoryPath: string; readonly filename: string; readonly filenameWithoutExtension: string; readonly extension: string; readonly isDotFile: boolean; constructor(chunks: string[]); join(path: string | ContentFilePath): ContentFilePath; changeExtension(extension: string): ContentFilePath; readonly copy: ContentFilePath; static createFromPath(path: string): ContentFilePath; toString(): string; }