import { ReactNode } from 'react'; export interface Props { children?: string | ReactNode; } /** * FormattedText replaces new line characters with HTML line breaks (``). * Use this component when you want to render text created by an editor or a ``. * For more complex use cases involving basic HTML tags, format the content as a React component * and pass it in as a child. The component will recieve customized styling based on the supported tags. */ export declare function FormattedText({ children }: Props): JSX.Element;