import { n as Core, t as ConsoleAppOptions } from "./types-C5drRyQu.js"; import { CliApp } from "resora"; //#region src/app.d.ts declare const resolveStubsDir: (config: { localStubsDir?: string; } | undefined, options?: ConsoleAppOptions, core?: Core) => string; declare class ArkstackConsoleApp extends CliApp { core: TCore; private readonly options; constructor(core: TCore, options: ConsoleAppOptions); makeController: (name: string, opts: any) => string; /** * Normalize a file path by removing the current working directory from it. * * @param p * @returns */ normalizePath: (p: string) => string; /** * Recursively merge defaultConfig with config from resora.config.js, giving * precedence to resora. */ mergeConfig: () => void; } //#endregion export { ArkstackConsoleApp, resolveStubsDir };