import http from "node:http"; export interface OAuthWrapperOptions { mcpTarget?: string; token?: string; port?: number; publicUrl?: string; /** Registered OAuth client id (confidential client). */ clientId?: string; /** Registered OAuth client secret — required to exchange any grant. */ clientSecret?: string; } export declare function startOAuthWrapper(options?: OAuthWrapperOptions): http.Server; //# sourceMappingURL=oauth-wrapper.d.ts.map