import type { Ref } from 'react'; import type { BaseProps, ForwardRefForwardPropsComponent } from '../../types'; export interface ParagraphDisplayProps extends BaseProps { /** Paragraph text */ value?: string; /** Ref for the wrapping element. */ ref?: Ref; } declare const ParagraphDisplay: ForwardRefForwardPropsComponent; export default ParagraphDisplay; //# sourceMappingURL=ParagraphDisplay.d.ts.map