import { UtilsService } from '../utils/utils.service';
import { CopyPasteService } from './copy-paste.service';
export declare class CopyPasteCommands {
    private readonly copyPasteService;
    private readonly utilsService;
    private readonly config;
    constructor(copyPasteService: CopyPasteService, utilsService: UtilsService);
    copyPaste({ path, find, findPlural, replace, replacePlural, destPath, extensions, globRules, replaceEnvs, }: {
        path?: string;
        find: string;
        findPlural?: string;
        replace: string;
        replacePlural?: string;
        destPath?: string;
        extensions?: string;
        globRules?: string;
        replaceEnvs?: string;
    }): Promise<void>;
}
