import type Conf from 'conf'; import type { InfinicodeConfig } from '../kernel/config-schema.js'; import { type ExplicitContextOpts } from './profile.js'; export interface AddRobotOptions extends ExplicitContextOpts { name: string; start?: boolean; autoStart?: boolean; yes?: boolean; /** Force a specific park-map pad/character preset id instead of the * fuzzy name-based match below — e.g. `--character jaguar`. */ character?: string; lan?: boolean; tailscale?: boolean; } export declare function roboparkAddRobot(config: Conf, opts: AddRobotOptions): Promise;