import React from "react"; export interface ParagraphProps { className?: string; size?: "f1" | "f2" | "f3" | "f4" | "f5" | "f6"; lineHeight?: "lh-title" | "lh-solid" | "lh-copy"; flushTop?: boolean; flushBottom?: boolean; flush?: boolean; } declare const Paragraph: React.FC; export default Paragraph;