import React from "react";
import { SubIcon, VibeComponent, VibeComponentProps } from "../../../types";
export interface ITableHeaderCellProps extends VibeComponentProps {
    title: string | React.ReactNode;
    icon?: SubIcon;
    infoContent?: string;
    sortState?: "asc" | "desc" | "none";
    onSortClicked?: (direction: "asc" | "desc" | "none") => void;
    sortButtonAriaLabel?: string;
    sticky?: boolean;
}
declare const TableHeaderCell: VibeComponent<ITableHeaderCellProps, HTMLDivElement>;
export default TableHeaderCell;
