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