import type React from 'react';
import type { ListTableConstructorOptions } from '@visactor/vtable';
import type { BaseTableProps } from './base-table';
export interface ListTableProps extends Omit<BaseTableProps, 'records' | 'columnWidthConfig' | 'columns' | 'dragOrder' | 'resize'>, Omit<ListTableConstructorOptions, 'container'> {
}
export declare const ListTable: React.ForwardRefExoticComponent<ListTableProps & {
    children?: React.ReactNode;
} & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;
