import { ComponentPropsWithoutRef } from 'react'; import { CommonTableCellProps } from './types'; export type SimpleTableBodyCellProps = ComponentPropsWithoutRef<"td"> & CommonTableCellProps; export type DataTableBodyCellProps = ComponentPropsWithoutRef<"div"> & CommonTableCellProps; /** * The props for the TableBodyCell component */ export type TableBodyCellProps = ({ /** * The type of table being rendered */ type: "simple"; } & SimpleTableBodyCellProps) | ({ /** * The type of table being rendered */ type: "data-table"; } & DataTableBodyCellProps); /** * The styled table body cell component * @param props - The props for the TableBodyCell component * @param props.type - The type of table being rendered * @param props.children - The children to render in the cell * @param props.className - The class name of the TableBodyCell component * @param props.rest - The rest of the props */ export declare const TableBodyCell: import('react').ForwardRefExoticComponent>;