import React, { CSSProperties } from 'react';
import { ColumnLock } from './enum';
export interface TableBodyProps {
    lock?: ColumnLock | boolean;
    getRef?: (node: HTMLDivElement | null) => void;
    onScroll?: (e: any) => void;
    style?: CSSProperties;
}
declare const _default: React.FunctionComponent<TableBodyProps>;
export default _default;
