import type { Result } from './types'; declare const findUp: (fileName: string, folderPath?: string, maxDepth?: number) => Result | undefined; export default findUp; export type { Result };