import React from "react"; import { Content as ContentType } from "../types"; export interface ContentProps { content: ContentType; } export declare const Content: (props: ContentProps) => React.JSX.Element;