import * as React from 'react'; import { Table } from '../table/Table'; type DataTableHeadProps = Omit, 'children'> & { sortable?: boolean; isSticky?: boolean; stickyOffset?: number; showTotalInFirstColumn?: boolean; totalSuffix?: string; }; export declare const DataTableHead: ({ sortable, theme, isSticky, stickyOffset, showTotalInFirstColumn, totalSuffix, style, className, ...props }: DataTableHeadProps) => React.ReactElement; export {};