import { ReactNode } from 'react'; type Props = { imageSrc?: string; title?: string; thumbSrc?: string; description?: ReactNode; className?: string; }; export declare const CaptionCard: ({ imageSrc, thumbSrc, title, description, className, }: Props) => import("react/jsx-runtime").JSX.Element; export {};