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