/** * The component that represent a title for a page. * This comment can receive child components too. */ export declare class EnhancedTitleComponent { /** * The title to be displayed. */ title: string; /** * Part of the title, but highlighted with bold weight. */ highlight: string; /** * A custom css class to be aplied to the div container. */ cssClass: string; constructor(); }