import type { WorkspacesInfo } from "./types"; export type { WorkspacesInfo } from "./types"; /** * Returns a list of all packages declared under workspaces. */ export declare function findWorkspacePackages(): Promise; /** * Returns a list of all packages declared under workspaces synchronously. */ export declare function findWorkspacePackagesSync(): string[]; /** * Returns the root of the workspace; `undefined` if not a workspace. */ export declare function findWorkspaceRoot(): Promise; /** * Returns the root of the workspace synchronously; `undefined` if not a * workspace. */ export declare function findWorkspaceRootSync(): string | undefined; export declare function getWorkspacesInfo(): Promise; export declare function getWorkspacesInfoSync(): WorkspacesInfo; //# sourceMappingURL=index.d.ts.map