import React from 'react'; import { CaptionComponentProps } from './types'; declare const Caption: { ({ amp, children, fontSize, fontFamily, height, lineHeight }: CaptionComponentProps): React.JSX.Element; defaultProps: { fontSize: string[]; fontFamily: string; lineHeight: string[]; }; }; export { Caption };