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