/** *Display card component is used to display text image and navigation together using a clear visual hierarchy. */ export declare class DatacomDisplayCard { host: HTMLElement; url?: string; heading: string; ctaText: string; imageUrl: 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 HTMLDatacomDisplayCardElement = HTMLElement & DatacomDisplayCard;