export { ABORT } from '../consts.js'; interface findUpOptions { includeSelf?: boolean; base?: string; } declare function forEachUp(callback: (folder: string) => Symbol | void, options?: findUpOptions): string[] | undefined; export { type findUpOptions, forEachUp };