/** * CLI interface for the `local` subcommand. * * Each plugin CLI delegates ` local ` here. */ /** * Run a `local` subcommand. Call from each plugin CLI's `local` case. * * @param binName - The plugin CLI name (e.g., "ory-claude") for help text * @param args - Arguments after "local" (e.g., ["up", "--no-seed"]) */ export declare function runLocalCommand(binName: string, args: string[]): Promise;