import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ autoplay?: boolean; loop?: boolean; showDots?: boolean; showArrows?: boolean; interval?: number; example?: "images" | "colors"; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; autoplay: { control: "boolean"; }; loop: { control: "boolean"; }; showDots: { control: "boolean"; }; showArrows: { control: "boolean"; }; interval: { control: "number"; }; }; args: { example: "images"; autoplay: false; loop: true; showDots: true; showArrows: true; interval: number; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Autoplay: Story; export declare const NoLoop: Story; export declare const ColorsOnly: Story; export declare const NoControls: Story;