import type { Meta, StoryObj } from '@storybook/react'; import Table from './index'; declare const data: { id: string; imageURL: string; name: string; email: string; phone: string; address: string; createdAt: string; }[]; declare const meta: Meta>; export default meta; type Story = StoryObj>; export declare const Default: Story;