/** * Recursively find files ending with the given suffix, * skipping node_modules and dist directories. */ export declare function findFiles(dir: string, suffix: string): Promise; /** * Read a file safely, returning a fallback message on error. */ export declare function readFileSafe(filePath: string): string;