import { BuildCommand } from './commands/build.command'; import { PushCommand } from './commands/push.command'; export declare class Cli { private appscriptsModule; buildCommand: BuildCommand; pushCommand: PushCommand; commander: string[]; buildCommandDef: CommandDef; pushCommandDef: CommandDef; constructor(); getApp(): import("commander").Command; } declare type CommandDef = [string, string, ...Array<[string, string]>]; export {};