import { Context } from './context/context.service'; import { ElementRef } from '@angular/core'; /** * A root app component which initializes the context-providers once the app is loaded * This is the earliest moment we can access the ElementRef, because before that * it's not attached to the DOM, so auto-detect wouldn't work. * @export * @class DnnAppComponent */ export declare class DnnAppComponent { /** * * @param element the angular ElementRef - required to auto-detect moduleId and more * @param context the context service, which handles and shares auto-detection * @param enableDefaultSubmit causes enter-hits to submit the asp.net forms (defaults to false) */ constructor(element: ElementRef, context: Context, enableDefaultSubmit?: boolean); }