import { ProjectGraph, ProjectGraphDependency, Tree } from '@nx/devkit'; import { AfterAllProjectsVersioned, VersionActions } from 'nx/release'; export declare const afterAllProjectsVersioned: AfterAllProjectsVersioned; export default class PythonVersionActions extends VersionActions { validManifestFilenames: string[]; private provider; init(tree: Tree): Promise; readDependencies(tree: Tree, projectGraph: ProjectGraph): Promise; readCurrentVersionFromSourceManifest(): Promise<{ currentVersion: string; manifestPath: string; }>; readCurrentVersionFromRegistry(): Promise<{ currentVersion: string; logText: string; }>; readCurrentVersionOfDependency(tree: Tree, projectGraph: ProjectGraph, dependencyProjectName: string): Promise<{ currentVersion: string | null; dependencyCollection: string | null; }>; updateProjectVersion(tree: Tree, newVersion: string): Promise; updateProjectDependencies(tree: Tree, projectGraph: ProjectGraph, dependenciesToUpdate: Record): Promise; } //# sourceMappingURL=version-actions.d.ts.map