import React from 'react'; import { type ParagraphProps } from '../paragraph'; import type { NestedParagraphSpec } from '@antv/ava'; type NestedParagraphProps = Omit & { spec: NestedParagraphSpec; }; export declare function NestedParagraph({ spec, ...paragraphProps }: NestedParagraphProps): React.JSX.Element; export {};