export class OjpCard { el: any; /** * Layout is vertical by default, set ishorizontal to true to change to horizontal layout for desktop * Type: boolean */ ishorizontal: boolean; flexDirectionDesktop: any; /** * Triggered when the card is visible/invisible in the viewport */ elementIsVisibleEvent: any; elementIsInvisibleEvent: any; componentDidLoad(): void; observer: IntersectionObserver; handleIntersection: (entries: any) => Promise; setCssProperties(): void; render(): any; }