import type Inula from 'openinula';
import type { ListTableConstructorOptions } from '@visactor/vtable';
import type { BaseTableProps } from './base-table';
export interface ListTableProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<ListTableConstructorOptions, 'container'> {
}
export declare const ListTable: Inula.ExoticComponent<ListTableProps & {
    children?: Inula.InulaNode;
} & import("../containers/withContainer").ContainerProps> & Inula.Attributes & {
    ref?: Inula.Ref<any>;
};
