import { NodeComponentProps } from '../../types/node-component'; import { default as React } from 'react'; export declare function TextNode(props: NodeComponentProps<{ type: 'text'; content: string; center?: boolean; }>): React.JSX.Element; export default TextNode;