import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ label?: string; value?: string; delta?: string; trend?: "up" | "down" | "neutral"; badge?: string; }, {}, "">; tags: string[]; argTypes: { trend: { control: "select"; options: string[]; }; }; args: { label: string; value: string; delta: string; trend: "up"; badge: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;