import { TableTypes } from '.';
import TableParts from './Parts';
declare namespace Normal {
    type Cell = TableParts.Cell;
    type HeadRow = Cell[];
    type BodyRow = Cell[] & {
        rowID?: string | number;
    };
    type Input = TableTypes.UniInput & {
        head: HeadRow | false;
        rows: BodyRow[];
        onRowClick?: TableTypes.OnRowClick;
    };
}
declare const Normal: (p: Normal.Input) => import("react/jsx-runtime").JSX.Element;
export { Normal, Normal as default };
