type FinalResult = S extends true ? string[] | null : string | null; type AbsolutePath = string; declare function findFileBottomUp(fileName: string, findAll?: S, startingPath?: AbsolutePath): FinalResult; export { findFileBottomUp as default };