import type { Meta, StoryObj } from '@storybook/react'; import { Table } from './Table'; /** * ```js * import { Table } from "@galaxy-ds/core"; * ``` */ 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'`. */ export declare const Default: Story; /** * Compact Table use `size='small'` */ export declare const WithCheckbox: Story; /** * To make table header sticky set `stickyHeader` to `true`. */ export declare const StickyHeader: Story;