import React from "react"; import { PbEditorElement } from "../../../../types"; interface CellProps { element: PbEditorElement; isActive: boolean; } declare const Cell: (props: CellProps) => React.JSX.Element; export default Cell;