import React from "react";
import { TableRowProps as CarbonTableRowProps } from "@carbon/react/es/components/DataTable/TableRow";
export interface TableRowProps extends CarbonTableRowProps, React.TdHTMLAttributes<HTMLTableRowElement> {
    /**
     * Display this row with the styles from a zebra style-enabled table.
     */
    useZebraStyle?: boolean;
}
export declare function TableRow({ className, children, useZebraStyle, ...otherTableRowProps }: TableRowProps): React.JSX.Element;
export default TableRow;
