import React from 'react'; import type { StyledProps } from '../common'; import type { TdParagraphProps } from './type'; export interface ParagraphProps extends TdParagraphProps, StyledProps { } declare const Paragraph: React.ForwardRefExoticComponent>; export default Paragraph;