import type { IncomingMessage, ServerResponse } from "node:http"; import type { ControlAuth } from "./auth.js"; import { ControlVerificationService, type ControlVerificationServiceOptions } from "./verification-service.js"; /** 所有入口共用持久化验证服务,HTTP 不直接派发网关副作用。 */ export declare class ControlVerificationHttp { private readonly auth; readonly service: ControlVerificationService; constructor(options: ControlVerificationServiceOptions, auth: ControlAuth); handle(request: IncomingMessage, response: ServerResponse, pathname: string, local: boolean): Promise; close(): Promise; } //# sourceMappingURL=verification-http.d.ts.map