import { Column, OnSort, Row } from "./types";
export type Props<T> = {
    column: Column<T>;
    onSort?: OnSort;
    sortDirection: "asc" | "desc" | "none";
};
export declare const VuiTableHeaderCell: <T extends Row>({ column, onSort, sortDirection }: Props<T>) => import("react/jsx-runtime").JSX.Element;
