/// import { IPath } from "./i-path.js"; import { ParsedPath } from "node:path"; export declare abstract class APath implements IPath { parsedValue: ParsedPath; serializedValue: string; constructor(serializedPath: string); }