import { DataTableFooterCellProps as BaseDataTableFooterCellProps } from '../../../base/cells/TableFooterCell'; /** * Props for the DataTableFooterCell component * @extends BaseDataTableFooterCellProps */ export type DataTableFooterCellProps = BaseDataTableFooterCellProps & { cellPosition: { rowIndex: number; columnIndex: number; }; }; /** * Data table footer cell with focus management * @param props - The props for the DataTableFooterCell component * @param props.cellPosition - The cell position of the cell * @param props.children - The children of the DataTableFooterCell component * @param props.className - The class name of the DataTableFooterCell component * @param props.tabIndex - The tab index of the cell */ export declare function DataTableFooterCell(props: DataTableFooterCellProps): import("react/jsx-runtime").JSX.Element;