export interface CloudConfig { authenticated: boolean; team_id?: string; user_id?: string; email?: string; last_sync?: string; } /** * Check if user is authenticated with Leash Cloud */ export declare function isAuthenticated(): boolean; /** * Load cloud configuration */ export declare function loadCloudConfig(): CloudConfig; /** * Save cloud configuration */ export declare function saveCloudConfig(config: CloudConfig): void; /** * Authenticate with Leash Cloud (stub) */ export declare function login(): Promise; /** * Sync policies with Leash Cloud (stub) */ export declare function syncPolicies(): Promise; /** * Upload audit log to Leash Cloud (stub) */ export declare function uploadAuditLog(): Promise; /** * Download team policies from Leash Cloud (stub) */ export declare function downloadTeamPolicies(): Promise; /** * Check cloud status */ export declare function printCloudStatus(): void; //# sourceMappingURL=index.d.ts.map