import { NxJsonConfiguration, ProjectGraph, TaskGraph } from '@nx/devkit';

declare function getAllWorkspaceTaskGraphs(nxJson: NxJsonConfiguration, projectGraph: ProjectGraph): {
    taskGraphs: Record<string, TaskGraph>;
    errors: Record<string, string>;
};
declare function createTaskId(projectId: string, targetId: string, configurationId?: string): string;

export { createTaskId, getAllWorkspaceTaskGraphs };
