import React, { PropsWithChildren, ReactNode } from 'react';
type TCardItemProps = {
    title: string;
    logo: string;
    href: string;
    LinkComponent?: React.ElementType<{
        href: string;
        children?: ReactNode;
    }>;
    defaultImage?: string;
    description?: ReactNode | string;
    contentInfo?: ReactNode;
    className?: string;
};
export declare function CardListItem({ title, href, description, logo, defaultImage, LinkComponent, children, contentInfo, className, }: PropsWithChildren<TCardItemProps>): React.JSX.Element;
export default CardListItem;
