import { type ListBase } from './List';
import React from 'react';
interface ListTableProps extends ListBase {
    mode?: 'cell' | 'row';
    head?: any[];
    renderHead?: (_: any) => React.ReactNode;
    data?: any[][];
}
export default function List({ mode, focus, initialPos, height: _height, width: _width, head, renderHead, data, renderItem, scrollbar, scrollbarBackground, scrollbarColor, vi, pass, onChange, onSubmit }: ListTableProps): React.JSX.Element;
export {};
