/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * Makes a path relative to a base directory */ export declare function makeRelative(targetPath: string, baseDir: string): string; /** * Shortens a path for display purposes */ export declare function shortenPath(filePath: string, maxLength?: number): string; /** * Normalizes a path for consistent comparison */ export declare function normalizePath(filePath: string): string; /** * Checks if a path is within a directory */ export declare function isPathWithin(filePath: string, directory: string): boolean; /** * Gets the common base path of multiple paths */ export declare function getCommonBasePath(paths: string[]): string; //# sourceMappingURL=paths.d.ts.map