import React from 'react';
export interface CaptionProps {
    /** The content to use as a graph label or timestamp */
    children?: React.ReactNode;
}
export declare function Caption({ children }: CaptionProps): JSX.Element;
