import * as files from "./index.js"; /** represents an absolute path to a file, i.e. from filesystem root to the file */ export declare class AbsoluteFilePath { value: string; constructor(value: string); /** provides the directory that contains this file */ directory(): files.AbsoluteDirPath; /** * provides this file path with platform specific path separators, * i.e. '\' on Windows and '/' everywhere else */ platformified(): string; /** provides the relative path from the given directory to this file */ toFullFile(sourceDir: files.SourceDir): files.FullFilePath; /** provides this file path with forward slashes as path separators */ unixified(): string; } //# sourceMappingURL=absolute-file.d.ts.map