export declare class FileFindResult { fileFound: boolean; path: string; result: string; constructor(fileFound?: boolean, path?: string, result?: string); } /** * File finder which traverses parent directories * until a given filename is found. */ export declare class ParentFileFinder { /** * Find file * @param startPath * @param filename * @returns {FileFindResult} */ static findFile(startPath: string, filename: string): FileFindResult; }