import type { StoryObj } from '@storybook/svelte'; import Popup from './PopupTest.svelte'; declare const meta: { title: string; component: typeof Popup; tags: string[]; argTypes: {}; }; export default meta; type Story = StoryObj; export declare const Regular: Story;