import type { Meta, StoryObj } from '@storybook/react'; import { TableBody } from './TableBody'; declare const meta: Meta; export default meta; type Story = StoryObj; /** * All Table components (Table, TableBody, TableHead, TableFooter, TableRow, TableCell) have the option to be rendered as another HTML element type for more flexible structure. * For example, `component='div'`. ```javascript import { TableBody } from "@galaxy-ds/core"; ``` */ export declare const Default: Story;