import { FC } from "react"; export interface ICaptionProps { className?: string; caption?: string; } export declare const Caption: FC;