import React, { HTMLProps, ReactNode } from "react";
type TheadTrProps = {
    tHeadTrProps?: HTMLProps<HTMLTableRowElement>;
    children: ReactNode;
};
/**
 * TheadTr component wraps the HTML tr element within thead
 * Applies styling for the header row
 */
declare const TheadTr: React.FC<TheadTrProps>;
export default TheadTr;
