import { Arguments, Command, CommandConfigOptions } from "@lerna/core";
export declare function factory(argv: Arguments<CommandConfigOptions>): RepairCommand;
export declare class RepairCommand extends Command {
    constructor(argv: Arguments<CommandConfigOptions>);
    initialize(): void;
    execute(): Promise<void>;
    configureNxOutput(): any;
}
declare const commonJsExport: typeof factory & {
    RepairCommand: typeof RepairCommand;
};
export default commonJsExport;
export { commonJsExport as "module.exports" };
