import * as React from "react"; import { TSortDirection } from "./tableTypes"; export interface ITableHeading { name: keyof T; cell: (name: keyof T) => React.ReactNode; sortBy?: (header: keyof T, direction: TSortDirection) => void; initSort?: TSortDirection; } export declare function TableHeading({ name, cell, sortBy, initSort, }: React.PropsWithChildren>): JSX.Element;