import type { ComponentProps, FC, PropsWithChildren } from 'react'; export interface FlowbiteCardTheme { base: string; children: string; horizontal: { off: string; on: string; }; href: string; img: { base: string; horizontal: { off: string; on: string; }; }; } export interface CardProps extends PropsWithChildren> { horizontal?: boolean; href?: string; imgAlt?: string; imgSrc?: string; } export declare const Card: FC;