import * as React from 'react'; export interface ParagraphProps extends React.HTMLAttributes { [x: string]: unknown; ref?: React.Ref; shouldRender?: boolean; } export interface ParagraphRefCurrent { wrapper: HTMLParagraphElement | null; } export declare const P: React.FC;