/** Core */ import { CoreComponent } from "cmf.core/src/core"; /** Angular2 */ import * as ng from "@angular/core"; /** * @whatItDoes * The Flex View component. * This component serves as a container for templates of items served in Flexible Box Layout * * @howToUse * This component is used with the inputs and outputs mentioned below. * * ### Inputs * `any[]` : **items** - The items of this component ; * * ### Example * To use the component, assume this HTML Template as an example: * * ```HTML * * * ``` * */ export declare class FlexView extends CoreComponent { items: any[]; _itemTemplate: ng.TemplateRef; _renderedItems: any[]; /** * @method constructor */ constructor(elementRef: ng.ElementRef); } export declare class FlexViewModule { }