export type NumberOfItemsPerRow = 3 | 4; /** * Card Group components are used to hold a number of card * components and handles the responsiveness of how the cards * wrap on smaller screens. */ export declare class DatacomCardGroup { itemsPerRow?: NumberOfItemsPerRow; render(): any; } export type HTMLDatacomCardElement = HTMLElement & DatacomCardGroup;