import React from 'react'; export declare type CaptionProps = Readonly<{ children: string; isoDate: string; href?: string | JSX.Element; onClick?: (event: React.MouseEvent) => void; secondaryText?: string; }>; export declare const Caption: ({ children, href, onClick, secondaryText, isoDate }: CaptionProps) => JSX.Element;