import { ServerlessApplicationConstructor } from './ServerlessApplication'; import { WebApplicationConstructor } from '../web/WebApplication'; export declare class ServerlessApplicationContext { private invoker; private app; static create(type: ServerlessApplicationConstructor): ServerlessApplicationContext; with(type: WebApplicationConstructor, settings: any, root?: string): ServerlessApplicationContext; invoke(args: ArrayLike): any; }