import React from "react"; import { PbEditorElement } from "../../../../types"; interface EmptyCellProps { element: PbEditorElement; depth?: number; } export declare const EmptyCell: ({ element, depth }: EmptyCellProps) => React.JSX.Element; /** * @deprecated Use the named `EmptyCell` export instead. */ export default EmptyCell;