/** * Converts simple text into a paragraph component. * @param {string} content The content to render as a paragraph. * @returns An HTML component configuration for a paragraph of the supplied tect. */ declare const getParagraphFromText: (content: any) => { type: string; tagName: string; content: any; }; export default getParagraphFromText;