import React from 'react'; import { BlockProps } from 'antd/es/typography/Base'; declare const PARAGRAPH_LEVEL_LIST: [1, 2, 3]; export interface ParagraphProps extends BlockProps { onClick?: (e?: React.MouseEvent) => void; level?: typeof PARAGRAPH_LEVEL_LIST[number]; category?: 'body' | 'button' | 'caption' | 'overline'; } declare const Paragraph: React.FC; export default Paragraph;