import { ModeType } from '../constants'; export interface Props extends Omit, 'style'> { /** Adds custom classes to the element. */ className?: string; /** Sets the content of the table body. Use TableRows */ children?: React.ReactNode; /** For display with less space. Discouraged to use together with interactive elements. */ mode?: ModeType; } export declare const TableBody: React.FC; export default TableBody;