import * as files from "./index.js"; /** represents the document base directory */ export declare class SourceDir { value: string; constructor(value: string); fullFilesMatchingGlob(expression: string): Promise; joinFullDir(dir: files.FullDir): files.AbsoluteDirPath; joinFullFile(file: files.FullFilePath): files.AbsoluteFilePath; /** provides a path of this directory with the given path appended */ joinStr(...paths: string[]): string; /** * Returns the path in the platform-specific format, * i.e. using '\' on Windows and '/' everywhere else */ platformified(): string; /** Returns this absolute path using forward slashes as path separators */ unixified(): string; } //# sourceMappingURL=source-dir.d.ts.map