import type { ObjectOf } from "../Types"; declare type TransformViewServer = (url: string, View: any, props: any) => Promise<{ html: string; head: string; css: { code: any; }; }>; /** * make render method using specific transformView */ export declare const makeRenderTransform: (transformView: TransformViewServer) => (modules: any, viewPath?: string) => (url: any, props: any, req: Request, ctx: ObjectOf, cb: (props: any) => any) => Promise<(string | { html: string; head: string; css: { code: any; }; })[]>; export {};