import type { CompareProps } from '@rc-component/context/lib/Immutable'; import * as React from 'react'; import Table, { type TableProps } from '../Table'; export interface VirtualTableProps extends Omit, 'scroll'> { scroll: { x?: number; y: number; }; listItemHeight?: number; } declare function VirtualTable(props: VirtualTableProps): React.JSX.Element; export declare function genVirtualTable(shouldTriggerRender?: CompareProps): typeof VirtualTable; declare const _default: typeof VirtualTable; export default _default;