import React, { HTMLAttributes } from 'react';
import { Color } from '../../interfaces';
export interface ParagraphProps {
/** Paragraph content */
children: React.ReactNode | React.ReactNode[];
/** Color of the text */
color?: Color;
}
declare const Paragraph: ({ color, children, ...other }: ParagraphProps & HTMLAttributes) => JSX.Element;
export default Paragraph;