import { DetailedHTMLProps, FC, HTMLAttributes, PropsWithChildren } from "react";
import { TableCellAlignments, TableCellColors, TableSplitters } from "../NvTable/types";
export interface NvTableCellProps extends DetailedHTMLProps, HTMLTableCellElement> {
header?: boolean;
align?: TableCellAlignments;
color?: TableCellColors;
splitters?: TableSplitters;
className?: string;
colSpan?: number;
rowSpan?: number;
}
declare const NvTableCell: FC>;
export default NvTableCell;