import { Command, flags } from '@oclif/command'; declare class MakePublish extends Command { static description: string; static flags: { config: flags.IOptionFlag; }; /** * CLI command execution handler. * * @returns {Promise} */ run(): Promise; } export default MakePublish;