import { ReactElement } from 'react';
declare type CaptionProps = {
    caption: string | ReactElement<any>;
    color: string;
};
export declare const Caption: ({ caption, color }: CaptionProps) => JSX.Element;
export {};
