import { Command } from "commander"; interface RemoveOptions { project: string; env?: string; force: boolean; } export declare function projectModulesRemoveCommand(modules: string[], options: RemoveOptions): Promise; export default function (): Command; export {};