import * as React from 'react'; export interface FigcaptionProps extends React.HTMLAttributes { [x: string]: unknown; ref?: React.Ref; shouldRender?: boolean; } export interface FigcaptionRefCurrent { wrapper: HTMLElement | null; } export declare const Figcaption: React.FC;