import { CodeTransform } from "@atomist/sdm";
/**
 * Set the Spring Boot version to the desired version.
 * Will act on all pom files found in the project, not just in the root,
 * so works on monorepos.
 */
export declare function setSpringBootVersionTransform(desiredBootVersion: string): CodeTransform;
/**
 * Set the Spring Boot version according to the parameters.
 * Will act on all pom files found in the project, not just in the root,
 * so works on monorepos.
 */
export declare const SetSpringBootVersionTransform: CodeTransform<{
    desiredBootVersion: string;
}>;
