/**
 * @file index.tsx
 *
 * @fileoverview Displays a table row.
 */
import React, { MouseEvent } from 'react';
interface TableRowProps {
    /**
     * Text for the button
     *
     * @default null
     */
    children?: React.ReactNode;
    /**
     * The event when clicking a row.
     */
    onClick?: (event: React.MouseEvent<HTMLTableRowElement, MouseEvent> | any) => void;
}
export declare const TableRow: ({ children, onClick }: TableRowProps) => JSX.Element;
export {};
