import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ sortable?: boolean; striped?: boolean; hoverable?: boolean; compact?: boolean; stickyHeader?: boolean; }, {}, "">; tags: string[]; argTypes: { sortable: { control: "boolean"; }; striped: { control: "boolean"; }; hoverable: { control: "boolean"; }; compact: { control: "boolean"; }; stickyHeader: { control: "boolean"; }; }; args: { sortable: true; striped: false; hoverable: true; compact: false; stickyHeader: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Striped: Story; export declare const Compact: Story; export declare const NotSortable: Story;