import type { PathResolverFunction, PathResolverFunctionAsync } from '../../types.js'; /** * Resolve a path to the .git folder * @param path The path to resolve against * @returns The resolved path to the .git folder */ export declare const resolveSync: PathResolverFunction; /** * Resolve a path to the .git folder (async) * @param path The path to resolve against * @returns The resolved path to the .git folder */ export declare const resolve: PathResolverFunctionAsync; export declare const resolver: { sync: PathResolverFunction; async: PathResolverFunctionAsync; }; //# sourceMappingURL=git.d.ts.map