import React from 'react'; declare type ParagraphBaseProps = Readonly<{ className?: string; itemProp?: string; }>; export declare type ParagraphSimpleProps = ParagraphBaseProps & Readonly<{ children: React.ReactNode; }>; export declare type ParagraphExpandableProps = ParagraphBaseProps & Readonly<{ isExpandable: true; expandLabel: string; children: string; }>; export declare type ParagraphProps = ParagraphSimpleProps | ParagraphExpandableProps; export declare function Paragraph(props: ParagraphProps): JSX.Element; export {};