import React from "react"; import { PbElement } from "../../types"; export interface ElementProps { element: PbElement | null; } declare const Element: (props: ElementProps) => React.JSX.Element; export default Element;