import { Path } from '@angular-devkit/core'; export declare class PathSolver { /** * Computes the relative path between two paths. * * @param from - The source path. * @param to - The target path. * @returns The relative path between the two paths. */ relative(from: Path, to: Path): string; }