import type { Header } from '@tanstack/react-table'; import * as React from 'react'; import { Table } from '../table/Table'; type DataTableHeaderProps = React.ComponentProps & { header: Header, unknown>; includeTotal?: boolean; totalSuffix?: string; }; export declare const DataTableHeaderCell: ({ header, includeTotal, totalSuffix, children, className, ...props }: DataTableHeaderProps) => React.JSX.Element; export {};