import { CodeTransform, CodeTransformRegistration } from "@atomist/sdm";
/**
 * Return a code transform that will add the given Spring Boot starter to a project.
 * Do nothing if it's already there, or the project isn't a Spring Boot project.
 * @param {string} artifact starter name
 * @param {string} group group the starter is from. Defaults to org.springframework.boot
 * @return {CodeTransform}
 */
export declare function addSpringBootStarterTransform(artifact: string, group?: string): CodeTransform;
/**
 * Command to add a Spring Boot starter to the project
 */
export declare const AddSpringBootStarter: CodeTransformRegistration<{
    artifact: string;
    group?: string;
}>;
