/** * `agenticros remote` — run preset CLI actions on an online ARC robot. * * agenticros remote list * agenticros remote status [--robot ] * agenticros remote skills_list [--robot ] * agenticros remote skills_remove --skill [--robot ] * agenticros remote gateway_restart [--robot ] * * Uses POST /robot/:id/cli on cloud.agenticros.com. No free-form shell. */ export interface RemoteOptions { /** Subcommand: list | */ action?: string; /** --robot */ robot?: string; /** --skill for skills_remove */ skill?: string; /** --json */ json?: boolean; } export declare function remoteCommand(opts: RemoteOptions): Promise; /** Interactive picker used by the Cloud account menu. */ export declare function remoteControlInteractive(): Promise; //# sourceMappingURL=remote.d.ts.map