/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * Reads file contents from a given path */ export declare function readPath(filePath: string): string; /** * Checks if a path exists */ export declare function pathExists(filePath: string): boolean; /** * Reads directory contents */ export declare function readDirectory(dirPath: string): string[]; /** * Gets path information */ export declare function getPathInfo(filePath: string): { exists: boolean; isFile: boolean; isDirectory: boolean; basename: string; dirname: string; extension: string; };