import { type ParsedPath } from "node:path"; export declare class FileRef { ext: string; name: string; rootDir: string; subDir: string; constructor({ ext, name, rootDir, subDir, }: { ext: string; name: string; rootDir: string; subDir: string; }); exists(): Promise; parse(): ParsedPath; path(): string; }