/** * Config command for managing Aship configuration */ import { Command } from '@oclif/core'; /** * Config command for managing Aship configuration */ export default class ConfigCommand extends Command { static description: string; static examples: string[]; static flags: { from: import("@oclif/core/interfaces").OptionFlag; to: import("@oclif/core/interfaces").OptionFlag; 'dry-run': import("@oclif/core/interfaces").BooleanFlag; location: import("@oclif/core/interfaces").OptionFlag; force: import("@oclif/core/interfaces").BooleanFlag; }; static args: { command: import("@oclif/core/interfaces").Arg>; key: import("@oclif/core/interfaces").Arg>; value: import("@oclif/core/interfaces").Arg>; }; run(): Promise; /** * Handle get command * @param key Configuration key */ private handleGet; /** * Handle set command * @param key Configuration key * @param value Configuration value */ private handleSet; /** * Handle list command */ private handleList; /** * Handle init command - create default .ashiprc file */ handleInit(): Promise; /** * Handle migrate command */ handleMigrate(): Promise; } //# sourceMappingURL=config.d.ts.map