import { BlockContentType, BuildGradleTaskType } from '../types/mod.types';
export declare function buildGradleTask(args: {
    configPath: string;
    packageName: string;
    content: string;
    task: BuildGradleTaskType;
}): Promise<string>;
export declare function findOrCreateBlock(content: string, block: string): {
    blockContent: BlockContentType;
    content: string;
};
export declare function runTask(args: {
    configPath: string;
    packageName: string;
    task: BuildGradleTaskType;
}): Promise<void>;
export declare const summary = "build.gradle modification";
