import { ReactNode, FunctionComponent } from 'react';
interface ParagraphProps {
    children: ReactNode | ReactNode[];
    className?: string;
}
/**
 * Paragraph component
 * @param {*} props
 * @returns
 */
declare const Paragraph: FunctionComponent<ParagraphProps>;
export default Paragraph;
