export interface ParagraphProps {
    /** The text displayed. */
    text?: string;
    /** A custom class. */
    className?: string;
}
declare const Paragraph: (paragraph: ParagraphProps) => any;
export default Paragraph;
