import { ICommand } from './Commands/ICommand'; declare class Application { private program; private commands; constructor(); addCommands: (...commands: ICommand[]) => void; run: () => Promise; private setupCommand; private addCommand; } export default Application;