import { FsModifierType, FsTaskType } from '../types/mod.types';
export declare function fsTask(args: {
    configPath: string;
    packageName: string;
    task: FsTaskType;
}): Promise<void>;
export declare function applyFsModification(action: FsModifierType, packageName: string): Promise<void>;
export declare function runTask(args: {
    configPath: string;
    packageName: string;
    task: FsTaskType;
}): Promise<void>;
export declare const summary = "File system operation";
