import { FC, ReactNode } from "react"; interface CaptionProps { children?: ReactNode; bootstrap4?: boolean; } declare const Caption: FC; export default Caption;