import { type ConfidentialHTTPRequest, type ConfidentialHTTPRequestJson, type HTTPResponse } from '../../../../../generated/capabilities/networking/confidentialhttp/v1alpha/client_pb'; import type { Runtime } from '../../../../../sdk'; import type { CapabilityInput } from '../../../../../sdk/utils/types/no-excess'; /** * Client Capability * * Capability ID: confidential-http@1.0.0-alpha * Capability Name: confidential-http * Capability Version: 1.0.0-alpha */ export declare class ClientCapability { /** The capability ID for this service */ static readonly CAPABILITY_ID = "confidential-http@1.0.0-alpha"; static readonly CAPABILITY_NAME = "confidential-http"; static readonly CAPABILITY_VERSION = "1.0.0-alpha"; sendRequest(runtime: Runtime, input: CapabilityInput): { result: () => HTTPResponse; }; }