export declare function getWorkspaceBase(): Promise; export declare function getWorkspacePath(name: string): Promise; export declare function getWorkspaceRelative(path: string): Promise; export declare function existsWorkspace(relative?: string): Promise; export declare function isWorkspace(): Promise; export declare function isWorkspaceRoot(): Promise; export declare type WorkspacePackages = { [name: string]: WorkspacePackage; }; export declare type WorkspacePackage = { location: string; workspaceDependencies: string[]; mismatchedWorkspaceDependencies: string[]; }; export declare function getWorkspacePackages(): Promise;