import { ComponentPropsWithoutRef } from 'react'; import { Table as TanstackTable } from '@tanstack/react-table'; /** * Props for the DataTableHeader component * @extends TanstackTable * @extends ComponentPropsWithoutRef<"div"> */ type DataTableHeaderProps = { table: TanstackTable; } & ComponentPropsWithoutRef<"div">; /** * Data table header container * @param props - The props for the DataTableHeader component * @param props.table - The table instance from @tanstack/react-table to render */ export declare function DataTableHeader({ table }: DataTableHeaderProps): import("react/jsx-runtime").JSX.Element; export {};