import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface CaptionProps { children: ReactNode; className?: string | null; } /** * The `` component is typically used below images or videos. */ export declare const Caption: MdxComponent; export {};