/// import { ContentFilePath } from "./ContentFilePath"; import { Metadata } from "../meta/Metadata"; export declare class ContentFile { private _sourcesDirectory; private _relativeSourcePath; private _modifiedContent; private _hasModifiedContent; private _metadata; private _relativeTargetPath; readonly relativeSourcePath: ContentFilePath; readonly absoluteSourcePath: ContentFilePath; readonly relativeTargetPath: ContentFilePath; readonly metadata: Metadata; readonly hasModifiedContent: boolean; constructor(relativeFilePath: ContentFilePath | string, sourcesDirectory: ContentFilePath | string); getContents(): Buffer; setContents(content: Buffer | string): void; }