import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: paragraph** * * Equivalent to the p HTML tag. * * Children: [any+] * * * */ declare function Paragraph({ className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { Paragraph };