import type { CompareProps } from '@rc-component/context/lib/Immutable'; import * as React from 'react'; import type { Reference } from '../interface'; import Table, { type TableProps } from '../Table'; export interface VirtualTableProps extends Omit, 'scroll'> { scroll: { x?: number; y: number; }; listItemHeight?: number; } export type ForwardGenericVirtualTable = ((props: TableProps & React.RefAttributes) => React.ReactElement) & { displayName?: string; }; export declare function genVirtualTable(shouldTriggerRender?: CompareProps): ForwardGenericVirtualTable; declare const _default: ForwardGenericVirtualTable; export default _default;