import { TemplateRef } from '@angular/core';
export declare class LayoutSection {
    baseClass: boolean;
    secondary: boolean;
    oneHalf: boolean;
    oneThird: boolean;
    annotated: boolean;
    /**
     * Sets the title for an annotated layout section.
     */
    title: string | TemplateRef<any>;
    /**
     * Sets the description for an annotated layout section.
     */
    description: string | TemplateRef<any>;
}
