import { default as React, HTMLAttributes, DetailedHTMLProps, ElementType } from 'react';
export interface RichTextProps extends DetailedHTMLProps, HTMLElement> {
/**
* The HTML content to render
*/
content: string;
/**
* The HTML element to render as (default: 'div')
*/
as?: ElementType;
/**
* ID to find this component in testing tools (e.g.: cypress, testing library, and jest).
*/
testId?: string;
}
declare const RichText: React.ForwardRefExoticComponent & React.RefAttributes>;
export default RichText;
//# sourceMappingURL=RichText.d.ts.map