import { type RuntimeApiAdapter, type RuntimeApiAdapterPackage } from '@moorline/contracts'; import { ControlApiServer } from './server.js'; export declare function createAdapter(input: { host: string; port: number; config: Record; configPath?: string; entrypoint: string; }): RuntimeApiAdapter; export declare function runHttpAdapter(input: { host: string; port: number; config: Record; configPath?: string; entrypoint: string; waitForShutdown?: () => Promise; }): Promise; declare const runtimePackage: RuntimeApiAdapterPackage; export { ControlApiServer }; export default runtimePackage;