import type { PathPredicateFunction, PathPredicateFunctionAsync } from '../types.js'; /** * Determine if a path is a git root * @param path The path to resolve against * @returns A boolean indicating if the path is a git root */ export declare const testSync: PathPredicateFunction; /** * Determine if a path is a git root (async) * @param path The path to resolve against * @returns A boolean indicating if the path is a git root */ export declare const test: PathPredicateFunctionAsync; /** * Resolver set for git roots */ export declare const predicate: { sync: (path: string) => boolean; async: (path: string) => Promise; }; //# sourceMappingURL=git.d.ts.map