import { AfterViewInit } from '@angular/core'; import { BreakpointObserver } from '@angular/cdk/layout'; /** * The content wrapper help to create a page with a common theme. * * Two displays are allowed : * - With icon : An icons come in the title * - Without icon : No icon is in the title * * Two sizes are allowed : * - full-width : all the screen is took to render the display * - small-width : the content take a small width and is centered. * * * */ export declare class LeftZoneDirective { } export declare class MainZoneDirective { } export declare class RightZoneDirective { } export declare class BreadcrumbDirective { } export declare class ContentWrapperComponent implements AfterViewInit { hasLeft: boolean; hasRight: boolean; title: string; subTitle: string; withIcon: false; iconUrl: string; wrapperClass: string; private nav; private righZone; private pFullWidth; constructor(breakpointObserver: BreakpointObserver); get fullWidth(): boolean; set fullWidth(f: boolean); ngAfterViewInit(): void; get mainContentClass(): string; }