import { FC } from 'react'; import { type FlexboxProps } from 'react-layout-kit'; import { type IconProps } from "../Icon"; export interface CardProps extends Omit { desc?: string; href?: string; icon?: IconProps['icon']; iconProps?: Omit; image?: string; title: string; } declare const Card: FC; export default Card;