/**
 * @file index.tsx
 *
 * @fileoverview Displays a table body .
 */
import React from 'react';
interface TableBodyProps {
    /**
     * Text for the button
     *
     * @default null
     */
    children?: React.ReactNode;
}
export declare const TableBody: ({ children }: TableBodyProps) => JSX.Element;
export {};
