import React, { HTMLProps, ReactNode } from "react";
type TheadProps = {
    tHeadProps?: HTMLProps<HTMLTableSectionElement>;
    children: ReactNode;
};
/**
 * Thead component wraps the HTML thead element
 * Applies base styling for the table header
 * Updated with dark mode support
 */
declare const Thead: React.FC<TheadProps>;
export default Thead;
