/** * ATP Service Connector * * Secure connector for external services with ATP protection */ import type { ATPClient } from 'atp-sdk'; import type { ExternalServiceConfig } from './types.js'; export declare class ATPServiceConnector { private atpClient; private secretManager; private config; constructor(atpClient: ATPClient, config: ExternalServiceConfig); /** * Make a secure HTTP request */ request(agentDid: string, method: string, path: string, data?: any): Promise; /** * Match path against pattern */ private matchPattern; /** * DLP scan for sensitive data */ private dlpScan; } //# sourceMappingURL=service-connector.d.ts.map