import { type StitchService, type ConfigureIAMInput, type EnableAPIInput, type TestConnectionInput, type TestConnectionWithApiKeyInput, type IAMConfigResult, type APIEnableResult, type ConnectionTestResult } from './spec.js'; export declare class StitchHandler implements StitchService { private executor; private iamService; private apiService; private connectionService; constructor(); configureIAM(input: ConfigureIAMInput): Promise; enableAPI(input: EnableAPIInput): Promise; checkIAMRole(input: { projectId: string; userEmail: string; }): Promise; checkAPIEnabled(input: { projectId: string; }): Promise; testConnectionWithApiKey(input: TestConnectionWithApiKeyInput): Promise; testConnection(input: TestConnectionInput): Promise; }