import React from 'react'; import PropTypes from 'prop-types'; import { ParagraphProps } from './types'; /** * Typography.Paragraph */ declare class Paragraph extends React.Component { static propTypes: { prefix: PropTypes.Requireable; component: PropTypes.Requireable; }; static defaultProps: { prefix: string; type: string; size: string; component: string; }; render(): React.JSX.Element; } export type { Paragraph }; declare const _default: import("../config-provider/types").ConfiguredComponentClass; export default _default;