/** * Feature highlight component is used to display content and actions relating to * single subject. */ export declare class DatacomFeatureHighlight { host: HTMLElement; featureTitle: string; ctaText: string; icon?: string; imageUrl: string; url: string; hasDescriptionSlotElements: boolean; /** * Lifecycle function which checks for presence of slotted elements * (info needed for conditionally rendering said elements.) */ componentWillLoad(): Promise; render(): any; } export type HTMLDatacomFeatureHighlightElement = HTMLElement & DatacomFeatureHighlight;