import { Element } from 'html-react-parser'; import { IBlock } from '../components'; import { IBlockAttributes } from './types'; export interface ParagraphBlockProps extends IBlockAttributes { dropCap?: boolean; } export interface IParagraphBlock extends IBlock { } export declare function ParagraphBlock({ domNode: node, component: Component, children, style, }: IParagraphBlock): import("react/jsx-runtime").JSX.Element; /** * @internal */ export declare namespace ParagraphBlock { const defaultProps: { test: (node: Element) => boolean; }; }