/** * EnhancedHeaderComponent * * A header with a highlighted section. * * IMPORTANT NOTE: * This component was designed to work with the Lato font family. * If the highlight isn't working as intended, check h1's computed * font family for style overriding from other components. * * This happened to an unlucky Gorila once, and he spent an obscene * amount of time trying to figure it out. ¯\_(ツ)_/¯ */ export declare class EnhancedHeaderComponent { /** * Header's title. Appears in lighter font weight. */ title: string; /** * Header's highlight. Appears in normal font weight. */ highlight: string; /** * Header's main subtext. */ description: string; /** * Header's secondary subtext. */ description2: string; /** * Header's tooltip text. */ tooltipText: string; }