import React from 'react'; /** * `ItemsWidgetCard` component */ export declare const ItemsWidgetCard: { (props: any): React.JSX.Element; propTypes: { /** * @type {?array} list of flags to render, required array object structure e.g * [{ * name: string, --> must be correspond with the name of the subCard object name * date: date | string, * amount: number | string * }] */ cardData: array; /** * @type {?object} sub-cards detail content object, e.g * * CardNameXX and CardNameYY must be specified and corresponding with the name attribute in the card data * const subCardsList = { CardNameXX: { defaultColor: theme.palette.primary.main, textColor: theme.palette.secondary.main, component: props => { return ; }, icon: LoanIcon, }, CardNameYY: { defaultColor: '#73368E', textColor: '#FF9800', component: props => { return ; }, icon: LoanIcon, }, * }] */ subCardsList: object; /** * Optional, additional properties to apply some styles over the main container */ style: any; }; }; //# sourceMappingURL=ItemsWidgetCard.d.ts.map