import React from "react";
import { HeadSortCell } from "./TableHeadSort";
import { CellDataContent } from "./TableContainer";
/**
 * Utilities
 */
export declare function createCellSortData(dataSets: CellDataContentSort[], cellDataKeys: Array<keyof CellDataSort>): CellDataSort;
/**
 * Types
 */
interface CellDataContentSort extends CellDataContent {
    /**
     * The data as sorting reference
     */
    key: string;
}
export interface CellDataSort {
    [cellKey: string]: CellDataContentSort;
}
export interface TableContainerSortProps {
    headCells: HeadSortCell[];
    bodyCellsRows: CellDataSort[];
}
declare const TableContainerSort: React.FC<TableContainerSortProps>;
export default TableContainerSort;
