import type { Row, Table } from "@tanstack/react-table"; import React from "react"; import type { SortingType } from "./types"; interface HeaderProps { readonly table: Table; readonly stickyHeader?: boolean; readonly sorting?: SortingType; readonly onRowClick?: (row: Row) => void; } export declare function Header({ table, stickyHeader, sorting, onRowClick, }: HeaderProps): React.JSX.Element; export {};