import { FC, ReactNode } from 'react'; interface ParagraphProps { /** The content of the paragraph */ children: ReactNode; /** The color of the text. */ color?: string; /** Whether the text is bold */ isBold?: boolean; } export declare const Paragraph: FC; export {};