type LocateFileUpwardConfig = { startDir?: string; stopDir?: string; /** * @internal */ _originalStartDir?: string; }; export declare const locateFileUpward: (filePathOrPaths: string | readonly string[], { startDir, stopDir, _originalStartDir, }?: LocateFileUpwardConfig) => Promise; export {};