import { JsonTaskType } from '../types/mod.types';
export declare function jsonTask(args: {
    configPath: string;
    packageName: string;
    content: Record<string, any>;
    task: JsonTaskType;
}): Record<string, any>;
export declare function runTask(args: {
    configPath: string;
    packageName: string;
    task: JsonTaskType;
}): void;
export declare const summary = "Json file modification";
