import { ScriptTaskType } from '../types/mod.types';
import type { taskManager } from '../utils/taskManager';
export declare function scriptTask(args: {
    configPath: string;
    packageName: string;
    task: ScriptTaskType;
    taskManager: typeof taskManager;
}): Promise<void>;
export declare const runTask: typeof scriptTask;
export declare const summary = "";
export declare const isSystemTask = true;
