export interface AgentUpOptions { path: string; schedulerUrl?: string; hubUrl?: string; token?: string; serverId?: string; serverName?: string; register?: boolean; } export interface AgentDownOptions { path: string; } export interface AgentLogsOptions { path: string; follow?: boolean; service?: string; } export declare function roboparkAgentUp(opts: AgentUpOptions): Promise; export declare function roboparkAgentDown(opts: AgentDownOptions): Promise; export declare function roboparkAgentLogs(opts: AgentLogsOptions): Promise;