import React from 'react'; import { CardProps } from '../Card/Card'; export type HCardProps = Omit & { imageWidth?: number | string; }; declare function HCard({ className, children, imgUrl, icon, title, color, order, hoverButton, imgBase, iconCover, date, imageWidth, skeleton, }: HCardProps): React.JSX.Element; export { HCard };