import Consumer from '../consumer';
import { PathOsBasedRelative, PathOsBasedAbsolute } from '../../utils/path';
import { PathChangeResult } from '../bit-map/bit-map';
import Component from '../component/consumer-component';
import { BitId } from '../../bit-id';
export declare function movePaths(consumer: Consumer, { from, to }: {
    from: PathOsBasedRelative;
    to: PathOsBasedRelative;
}): Promise<PathChangeResult[]>;
export declare function moveExistingComponent(consumer: Consumer, component: Component, oldPath: PathOsBasedAbsolute, newPath: PathOsBasedAbsolute): void;
export declare function moveExistingComponentFilesToOneDir(consumer: Consumer, id: BitId, to: string): Promise<PathChangeResult[]>;
