export declare class LodCard { /** * The title of the card */ cardTitle: string; /** * The card description */ description: string; /** * The location address of the event */ address: string; /** * The date of the event */ date: string; /** * ; Seperated tags to show in the card */ tag: string; /** * Url of the image */ imageUrl: string; /** * Custom read more text */ readMoreText: string; /** * Read more url */ readMoreUrl: string; private get tagSplitted(); private get imageUrlFormatted(); private get readMoreTextFormatted(); render(): any; }