import "@ipare/core"; import "@ipare/inject"; import { Startup } from "@ipare/core"; import { CommandType } from "./configuration"; declare module "@ipare/core" { interface Context { get command(): CommandType; get commandArgs(): Record; get commandOptions(): Record; } } export declare class CliStartup extends Startup { constructor(mode?: string, args?: Record, options?: Record); run(): Promise; }