import type { PackageJson } from 'type-fest'; import type { PathResolverFunction, PathResolverFunctionAsync } from '../../types.js'; /** * 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 resolveSync: PathResolverFunction; /** * Resolve a path to the workspaces field of a package.json * (async) * @param path The path to resolve against * @returns The resolved workspaces field */ export declare const resolve: PathResolverFunctionAsync; export declare const resolver: { sync: PathResolverFunction; async: PathResolverFunctionAsync; }; //# sourceMappingURL=workspacesRoot.d.ts.map