import { BaseClient, type BaseClientConfig } from './base'; import type { GoogleConnectionStatus, GoogleOAuthStartOptions, GoogleOAuthStartResponse } from '../types'; declare class GoogleManagedToolsClient extends BaseClient { constructor(config: BaseClientConfig); startOAuth(agentId: string, options?: GoogleOAuthStartOptions): Promise; getStatus(agentId: string): Promise; disconnect(agentId: string): Promise<{ disconnected: boolean; agent_id: string; }>; } export declare class ManagedToolsClient { readonly google: GoogleManagedToolsClient; constructor(config: BaseClientConfig); } export {}; //# sourceMappingURL=managed-tools.d.ts.map