import { x as ShortcutConfig } from "../../config-DDAC7XCF.js"; import { r as ShortcutListEntry } from "../../types-BqXkMWC9.js"; import { Config } from "@oclif/core"; //#region src/services/shortcuts/runner.d.ts /** * Service for managing and executing command shortcuts */ declare class ShortcutRunner { #private; constructor(config: Config); /** * Load all shortcuts from configuration */ load(): Promise>; /** * Get formatted list of shortcuts for display */ list(): Promise; /** * Execute a shortcut by name * @param name - Shortcut name * @param passthroughArgs - Additional arguments to append */ run(name: string, passthroughArgs: string[]): Promise; } //#endregion export { ShortcutRunner };