import * as React from "react"; export interface RawTextProps { attributes?: any; text?: string; } declare function RawText(props: RawTextProps): React.JSX.Element; export default RawText;