import * as React from 'react'; import type { BlockProps } from './Base'; export interface ParagraphProps extends BlockProps<'div'>, Omit, 'type' | keyof BlockProps<'div'>> { } declare const Paragraph: React.ForwardRefExoticComponent>; export default Paragraph;