import type { ReactNode } from "react"; export interface TableHeadProps { /** The header TableRow. */ children: ReactNode; className?: string; } /** ``. When the table is selectable, prepends the select-all cell to * the FIRST header row so the header's column count matches the body's — the * checkbox column is Table's, not the consumer's schema. Clones the row * rather than rebuilding it, so the consumer's own props on that `TableRow` * survive. */ export declare function TableHead({ children, className }: TableHeadProps): import("react").JSX.Element; //# sourceMappingURL=TableHead.d.ts.map