export interface SetupOptions { configPath?: string; agentPath?: string; url?: string; token?: string; instanceId?: string; nonInteractive?: boolean; force?: boolean; } export interface SetupResult { ok: true; configPath: string; agentId: string; workspaceId: string; } export declare function runSetup(options: SetupOptions): Promise;