import { Logger } from "../../create-logger"; declare type Flags = { readonly home?: string; readonly src?: string; readonly dest?: string; readonly registryFrom?: string; }; export declare type Options = { readonly home: string; readonly src: string | null; readonly dest: string | null; readonly registryFrom: string | null; }; export declare function init(flags: Flags, _logger: Logger): Promise; export declare function run(options: Options): Promise; export {};