import React, { ReactNode } from 'react';
interface TableRowProps {
    record: any;
    contextMenu?: (record: any, hideContextMenu: () => void) => ReactNode;
    draggable?: boolean;
    'data-row-key'?: string | number;
}
declare const _default: React.MemoExoticComponent<({ ...restProps }: TableRowProps) => JSX.Element>;
export default _default;
