import type { TableCellNode } from '@prezly/slate-types'; import React from 'react'; import type { RenderElementProps } from 'slate-react'; interface Props extends RenderElementProps { element: TableCellNode; } export declare function TableCellElement({ attributes, element, children }: Props): React.JSX.Element | null; export {};