import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "full" | "compact" | "with-playlist"; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; }; args: { variant: "full"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Compact: Story; export declare const WithPlaylist: Story;