/** * Connect — Cloud-brokered Daytona Auth. * * Calls the workflows server API to create a Daytona sandbox for interactive * OAuth, SSHes in via PTY, then notifies the server to store credentials. * Follows the same pattern as auth-ssh.ts (cloud API broker). */ import type { AuthCommandIo } from './auth-ssh.js'; export interface ConnectCommandOptions { timeout: string; language?: string; cloudUrl?: string; } export declare function runConnectCommand(providerArg: string, options: ConnectCommandOptions, io: AuthCommandIo): Promise; //# sourceMappingURL=connect-daytona.d.ts.map