import type { Command } from 'commander'; import type Conf from 'conf'; import type { InfinicodeConfig } from '../kernel/config-schema.js'; /** Attach the robopark verbs to a Commander command (the `robopark` program in * the standalone bin, or the `infinicode robopark` group). */ export declare function attachRoboparkSubcommands(cmd: Command, config: Conf, opts?: { skipSetup?: boolean; }): void;