import { Builder } from "@atomist/sdm-pack-build";
/**
 * Build with Gradle in the local automation client.
 * This implementation requires Java and maven on the classpath.
 * Note it is NOT intended for use for multiple organizations. It's OK
 * for one organization to use inside its firewall, but there is potential
 * vulnerability in builds of unrelated tenants getting at each others
 * artifacts.
 */
export declare function gradleSingleModuleBuilder(): Builder;
export declare const GradleSingleModuleBuilder: Builder;
export interface GradleInfo {
    timeMillis?: number;
    success: boolean;
}
