import { BaseApp, type Adapter } from "@onebots/core"; import { GatewayMessageDebugStore } from "./message-debug-store.js"; import { GatewayVerificationStore } from "./verification-store.js"; /** 只拥有平台和协议资源的真实宿主,无管理路由、管理凭据或管理 socket。 */ export declare class GatewayApp extends BaseApp { readonly messageDebug: GatewayMessageDebugStore; readonly verification: GatewayVerificationStore; constructor(config: BaseApp.Config); protected onAdapterCreated(adapter: Adapter): void; protected listenHttpServer(signal?: AbortSignal): Promise; /** 管理传输就绪不代表账号登录或协议启动已完成。 */ startManaged(): Promise<{ accountsSettled: Promise; }>; /** 配置快照属于管理服务,网关不允许通过账号 API 回写。 */ protected assertAccountConfigSourceCurrent(): void; reload(): Promise; stop(): Promise; } //# sourceMappingURL=app.d.ts.map