import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ tone?: "brand" | "neutral" | "warning" | "success"; badge?: string; sticky?: boolean; }, {}, "">; tags: string[]; argTypes: { tone: { control: "select"; options: string[]; }; badge: { control: "text"; }; sticky: { control: "boolean"; }; }; args: { tone: "brand"; badge: string; sticky: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Warning: Story; export declare const Neutral: Story;