/** * Twilio client implementation. * * Uses the proto-generated REST API Integration Plugin type from @superblocksteam/types. * Twilio integrations use the REST API Integration plugin under the hood. */ import { RestApiIntegrationClient } from "../base/index.js"; import type { TwilioClient } from "./types.js"; /** * Internal implementation of TwilioClient. * * Extends RestApiIntegrationClient to inherit the generic apiRequest() method. * This implementation communicates with the orchestrator to execute * Twilio API calls. At runtime, the orchestrator handles authentication * and API request execution. */ export declare class TwilioClientImpl extends RestApiIntegrationClient implements TwilioClient { } //# sourceMappingURL=client.d.ts.map