import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ title?: string; description?: string; }, {}, "">; tags: string[]; argTypes: { title: { control: "text"; }; description: { control: "text"; }; }; args: { title: string; description: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const NoProjects: Story;