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