import { Meta, StoryObj } from '@storybook/react';
import { TableSkeleton } from '../src/components/TableSkeleton';

declare const meta: Meta<typeof TableSkeleton>;
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const SmallTable: Story;
export declare const LargeTable: Story;
export declare const SingleRow: Story;
