import { type ActivationResult, type ActivationLogger } from '@generacy-ai/activation-client'; export interface ActivateOptions { cloudUrl: string; logger: ActivationLogger; maxCycles?: number; maxRetries?: number; } /** * Run device-flow activation for deploy. * Opens the verification URL in the user's browser and polls for approval. */ export declare function runActivation(options: ActivateOptions): Promise; //# sourceMappingURL=activation.d.ts.map