export { sortStates } from "carbon-components-react/lib/components/DataTable/state/sorting"; import React from "react"; export declare function StringCellContent(props: { row: T; colKey: keyof T; rowIndex: number; }): React.ReactElement React.ReactElement React.Component)>) | (new (props: any) => React.Component)>; export declare type SortDirection = "NONE" | "DESC" | "ASC"; export declare const buildDateCompare: ({ accessor, sortDirection }: { accessor: (row: any) => any; sortDirection: SortDirection; }) => (rowA: any, rowB: any) => number; export declare const buildDefaultCompare: ({ accessor, sortDirection }: { accessor: (row: any) => any; sortDirection: SortDirection; }) => (rowA: any, rowB: any) => number;