import type { Meta, StoryObj } from '@storybook/react'; import { TableHead } from './TableHead'; /** * 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'`. * * ```js * import { TableHead } from "@galaxy-ds/core"; * ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story;