import React, { HTMLProps, ReactNode } from "react";
type TbodyTrProps = {
    tBodyTrProps?: HTMLProps<HTMLTableRowElement>;
    children: ReactNode;
};
/**
 * TbodyTr component wraps the HTML tr element within tbody
 * Handles alternate row coloring and applies custom props
 * Updated with dark mode support
 */
declare const TbodyTr: React.FC<TbodyTrProps>;
export default TbodyTr;
