import React from 'react'; export declare const InfoCard: { ({ children, title, subTitle, relatedTopics, label, headerComponent, subHeaderComponent, size, titleVariant, className, titleHeight }: { children: any; className: any; headerComponent?: string; label: any; relatedTopics: any; size: any; subHeaderComponent?: string; subTitle: any; title: any; titleHeight: any; titleVariant?: string; }): React.JSX.Element; propTypes: { /** * Main content for the card */ children: any; /** * Card title */ title: any; /** * Optional card subtitle */ subTitle: any; /** * Option list of related topics */ relatedTopics: any; /** * Title for related topics or alt title */ label: any; /** * Change semantic header of card title */ headerComponent: any; /** * Change semantic header of card subtitle */ subHeaderComponent: any; /** * Card size override for dense card */ size: any; }; defaultProps: { headerComponent: string; subHeaderComponent: string; size: string; }; }; //# sourceMappingURL=InfoCard.d.ts.map