import type { HTMLProps } from 'react';
export type TTableBorderCell = 'none' | 'column' | 'row' | 'both';
export type TTableProps = {
/** Set the Table cell's border */
borderCell?: TTableBorderCell;
/** Set the Table to have a hover effect */
hoverable?: boolean;
/** Set the Table to have striped row styles */
striped?: boolean;
} & HTMLProps;