export declare function findFilesInDirectory(directories: string[]): Promise<{
    files: string[];
    warnings: string[];
}>;
