import React from "react"; import type { DataTableColumn } from "../types"; import type { TableHeaderProps } from "./TableHeader"; type StyledLabelProps = { alignColumn?: DataTableColumn["align"]; normalizeHeight?: boolean; }; export declare const StyledLabel: import("@emotion/styled").StyledComponent & React.HTMLAttributes, "ref"> & React.RefAttributes & { theme?: import("@emotion/react").Theme; } & StyledLabelProps, {}, {}>; type SortableHeaderCellContentProps = Pick & DataTableColumn; export declare function SortableCellContent({ name, label, align, toggletipContent, sortDirection, currentlySortedByColumn, onSort, }: SortableHeaderCellContentProps): React.ReactElement; export {};