/**
 * Suite that provides the WebService service that makes it possible to handle HTTP requests with actors.
 *
 * @packageDocumentation
 */
import { ActorSuite } from '@darlean/base';
import { IWebServiceCfg } from './intf';
export declare const WEBSERVICE_HOST_ACTOR = "io.darlean.WebServiceHostActor";
export * from './actor.impl';
export * from './intf';
export declare function createWebserviceSuite(config: IWebServiceCfg, appId: string): ActorSuite;
