import { ComponentProps, FC } from "react"; import { TableRowColors } from "../NvTable/types"; /** * Props interface for NvTableRow component. * @param {string} className - Optional class name for custom styling. * @param {TableRowColors} color - Color variant for the table row. */ export interface NvTableRowProps extends ComponentProps<"tr"> { className?: string; color?: TableRowColors; } /** * Functional component for rendering a table row with customizable color. * @param color - The color of the table row. Defaults to 'default'. * @param className - Additional CSS class names to apply to the table row. * @param children - The content to be displayed within the table row. * @returns A table row element with the specified color and children. */ declare const NvTableRow: FC; export default NvTableRow;