//#region src/index.d.ts /** * Runs the RONIN command-line interface (CLI) with the provided configuration options. * The `blade-cli` package intentionally doesn't do this itself, since the CLI is instead * automatically installed and exposed via the shorter `ronin` package name. * * @param config - Options for customizing the behavior of the CLI. * * @returns Nothing. */ declare const run: (config: { version: string; }) => Promise; //#endregion export { run as default, run };