import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ type?: "line" | "bar" | "donut"; }, {}, "">; tags: string[]; argTypes: { type: { control: "select"; options: string[]; }; }; args: { type: "bar"; }; }; export default meta; type Story = StoryObj; export declare const Bar: Story; export declare const Line: Story; export declare const Donut: Story;