import { NormalizedSchema, ProjectGeneratorOptions } from '../generators/project/schema';
import { BuilderCommandAliasType, MavenDependency } from '@nxrocks/common-jvm';
export declare const DEFAULT_SPRING_INITIALIZR_URL = "https://start.spring.io";
export declare function runBootPluginCommand(commandAlias: BuilderCommandAliasType, params: string[], options?: {
    cwd: string;
    ignoreWrapper?: boolean;
    runFromParentModule?: boolean;
}): {
    success: boolean;
};
export declare function buildBootDownloadUrl(options: NormalizedSchema): string;
export declare function isBootProject(project: {
    root: string;
}): boolean;
export declare function fetchBootDependencies(options: ProjectGeneratorOptions): Promise<Record<string, MavenDependency>>;
