import type { ComponentProps, FC, PropsWithChildren } from "react"; import { keepTableCellTheme } from "./TableCell"; import { DeepPartial } from "../../helpers/deep-partial"; export interface keepTableBodyTheme { base: string; cell: keepTableCellTheme; showBorderPosition: { left: string; right: string; }; } export interface TableBodyProps extends PropsWithChildren, ComponentProps<"tbody"> { theme?: DeepPartial; } export declare const TableBody: FC;