import type { ControlExtensionSelection } from "@onebots/core/control"; export interface ConfigurationRuntimeInspectInput { /** 管理服务必须传工作区内私有所有权目录。 */ privateRoot?: string; runtimeRoot: string; /** 仅允许管理服务提供;不得接收 HTTP 用户输入。 */ hostEntrypoint?: string; selection: ControlExtensionSelection; timeoutMs?: number; signal?: AbortSignal; } export interface ConfigurationRuntimeInspection { schemas: Record; fingerprint: string; } /** 仅管理服务受信内部调用;进程隔离不构成恶意扩展沙箱。 */ export declare function inspectConfigurationRuntime(input: ConfigurationRuntimeInspectInput): Promise; //# sourceMappingURL=configuration-runtime-inspect.d.ts.map