import { RenderOptions as RenderOptions_2 } from '@nguniversal/common/engine'; import { Request } from 'express'; import { Response } from 'express'; /** * This is an express engine for handling Angular Applications */ export declare function ngExpressEngine(setupOptions: Readonly): (filePath: string, options: object, callback: (err?: Error | null | undefined, html?: string | undefined) => void) => void; /** * These are the allowed options for the engine */ export declare type NgSetupOptions = Pick; /** * These are the allowed options for the render */ export declare interface RenderOptions extends RenderOptions_2 { req: Request; res?: Response; } export { }