import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface ParagraphProps { children: ReactNode; className?: string | null; large?: boolean | null; } export declare const P: MdxComponent; export {};