/// import type { TextLabelProps } from '../TextLabel/TextLabel'; import type { PDSTextType } from '../../../common/types'; type ContentsPropTypes = React.FunctionComponent & { Title: React.FC; Caption: React.FC; }; type TitlePropTypes = { text: PDSTextType; colorTheme: TextLabelProps['colorTheme']; font: 'body2Bold' | 'body2Regular'; }; type CaptionPropTypes = { text: PDSTextType; colorTheme: TextLabelProps['colorTheme']; }; declare const Contents: ContentsPropTypes; export default Contents;