import { Options } from "./walk.js"; import { Uri } from "vscode"; //#region src/find.d.ts /** * Find an item by name, walking parent directories until found. * * @param name The item name to find. * @returns The {@link Uri} of the item, if found. */ declare function up(name: string, options?: Options): Promise; /** * Get the first path that matches any of the names provided. * * @param names The item names to find. * @returns The {@link Uri} of the first item found, if any. */ declare function any(names: string[], options?: Options): Promise; //#endregion export { any, up };