/**
 * Suite that provides the WebGateways service that makes it possible to have actors handle HTTP requests.
 *
 * @packageDocumentation
 */
import { ActorSuite } from '@darlean/base';
import { IConfigEnv } from '@darlean/utils';
import { IWebGatewaysCfg } from './intf';
export declare const WEBGATEWAY_HOST_ACTOR = "io.darlean.WebGatewayHostActor";
export * from './actor.impl';
export * from './intf';
export declare function createWebGatewaysSuite(config: IWebGatewaysCfg, appId: string): ActorSuite;
export declare function createWebGatewaysSuiteFromConfig(config: IConfigEnv<IWebGatewaysCfg>, runtimeEnabled: boolean, appId: string): ActorSuite | undefined;
