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