import { BaseCommand } from '../../base/base-command'; export default class ModuleAddCommand extends BaseCommand { static description: string; static strict: boolean; static args: { name: string; description: string; required: boolean; }[]; static flags: { dir: import("@oclif/command/lib/flags").IOptionFlag; }; run(): Promise; } export declare const LIST_MODULES_QUERY = "query ListModulesQuery($modules: [String!]!) {\n listRegistryModule(filter: {node: {name: {in: $modules}}}) {\n edges {\n node {\n name\n }\n }\n }\n}";