import * as React from "react";
export interface TableRowProps {
    className?: string;
    children: React.ReactNode;
}
declare function TableRow({ className, children, ...props }: TableRowProps): JSX.Element;
export default TableRow;
