import { GradlePropertiesTaskType } from '../types/mod.types';
export declare function gradlePropertiesTask(args: {
    configPath: string;
    packageName: string;
    content: string;
    task: GradlePropertiesTaskType;
}): Promise<string>;
export declare function runTask(args: {
    configPath: string;
    packageName: string;
    task: GradlePropertiesTaskType;
}): Promise<void>;
export declare const summary = "gradle.properties modification";
