import { VueStaticRendererService } from '../services/VueStaticRendererService'; import { WebController } from '../../web/WebController'; import { WebApplicationSettings } from '../../web/WebApplicationSettings'; import { WebContext } from '../../web/WebContext'; import { NextFunction } from '../../web/NextFunction'; export declare class VueSsrController extends WebController { renderer: VueStaticRendererService; server(ctx: WebContext, next: NextFunction): Promise; assets(ctx: WebContext, next: NextFunction): Promise; cache(ctx: WebContext, next: NextFunction): Promise; ssr(ctx: WebContext): Promise; }