import { StriclineContext } from "./context.mjs"; //#region src/config.d.ts interface ConfigOpts { name: string; version: string; description: string; defaultCommand?: string; context?: (process: NodeJS.Process) => StriclineContext; } interface Config extends ConfigOpts {} declare class Config { context: (process: NodeJS.Process) => StriclineContext; constructor(opts: ConfigOpts); } //#endregion export { Config };