/// import { CardProps } from '../..'; export declare type LLCardType = 'basic'; export interface LLCardBasicType extends CardProps { cardType?: LLCardType; } export interface LLCardBasicProps extends CardProps { icon?: JSX.Element; cardType?: LLCardType; showViewButton?: boolean; onViewButtonClick?: () => unknown; } export declare type LLCardProps = LLCardBasicProps | LLCardBasicType;