import { ViewContainerRef, TemplateRef } from 'angular2/core'; /** * Removes or recreates a portion of the DOM tree based on an {expression}. * * If the expression assigned to `ngIf` evaluates to a false value then the element * is removed from the DOM, otherwise a clone of the element is reinserted into the DOM. * * ### Example ([live demo](http://plnkr.co/edit/fe0kgemFBtmQOY31b4tw?p=preview)): * * ``` *
* * {{errorCount}} errors detected *
* ``` * * ### Syntax * * - `
...
` * - `
...
` * - `` */ export declare class NgIf { private _viewContainer; private _templateRef; private _prevCondition; constructor(_viewContainer: ViewContainerRef, _templateRef: TemplateRef); ngIf: any; }