import { ComponentPropsWithoutRef } from 'react'; export type SimpleTableFooterCellProps = ComponentPropsWithoutRef<"td"> & { colSpan?: number; }; export type DataTableFooterCellProps = ComponentPropsWithoutRef<"div"> & { colSpan?: number; }; /** * The props for the TableFooterCell component */ export type TableFooterCellProps = ({ /** * The type of table being rendered */ type: "simple"; } & SimpleTableFooterCellProps) | ({ /** * The type of table being rendered */ type: "data-table"; } & DataTableFooterCellProps); /** * The styled table footer cell component * @param props - The props for the TableFooterCell 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 TableFooterCell component * @param props.rest - The rest of the props */ export declare const TableFooterCell: import('react').ForwardRefExoticComponent>;