import { RenderOptions } from '@nguniversal/common/engine'; import { StaticProvider } from '@angular/core'; import { Type } from '@angular/core'; /** @deprecated use `@nguniversal/common` instead. */ export declare function createTransferScript(transferData: Object): string; /** @deprecated use `@nguniversal/common` instead. */ export declare interface IEngineOptions extends Pick { appSelector: string; request: IRequestParams; url?: string; document?: string; ngModule: Type<{}>; providers?: StaticProvider[]; } /** @deprecated use `@nguniversal/common` instead. */ export declare interface IEngineRenderResult { completeHTML: string; html: string; globals: { styles: string; title: string; meta: string; transferData?: {}; [key: string]: any; }; } /** @deprecated use `@nguniversal/common` instead. */ export declare interface IRequestParams { location: any; origin: string; url: string; baseUrl: string; absoluteUrl: string; domainTasks: Promise; data: any; } /** @deprecated use `@nguniversal/common` instead. */ export declare function ngAspnetCoreEngine(options: Readonly): Promise; export { }