import React from "react"; export type TableHeaderProps = { className?: string; children: React.ReactNode; }; type TableHeaderWrapperProps = { children: React.ReactNode; showBorder?: boolean; }; export declare const TableHeaderWrapper: React.ForwardRefExoticComponent>; /** * The header of the Table. If you want to make it sticky, simply * add `sticky top-{number} z-[1]` to the `className` prop. It should be done using * className so we can modify it responsively. */ export declare const TableHeader: React.ForwardRefExoticComponent> & { Cell: ({ children, sort, className, ...cellProps }: { role?: "cell" | "columnheader"; stickyLeft?: number; } & import("tailwind-variants").VariantProps>> & Omit, "height" | "width"> & import("../..").TextColorVariantProps & { sort?: (import("./TableHeaderCell").TableColumnSort & { onSort: (newSort: import("./TableHeaderCell").TableColumnSort) => void; }) | undefined; }) => React.JSX.Element; }; export {}; //# sourceMappingURL=TableHeader.d.ts.map