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