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