import * as files from "./index.js"; /** * represents a full path to a file, * i.e. a path from the document base to a file. */ export declare class FullFilePath { private value; constructor(value: string); /** Returns the directory that contains this file */ directory(): files.FullPath; /** Returns the file extension of this path */ extName(): string; /** * Returns the path in the platform-specific format, * i.e. using '\' on Windows and '/' everywhere else */ platformified(): string; toFullFilePath(): FullFilePath; /** Returns this absolute path using forward slashes as path separators */ unixified(): string; } //# sourceMappingURL=full-file.d.ts.map