import type { StoryObj } from "@storybook/react"; import React from "react"; declare const meta: { title: string; component: React.FC; tags: string[]; argTypes: { size: { options: readonly ["xs", "sm", "md", "lg", "xl", "2xl"]; control: { type: "select"; }; description: string; }; variant: { options: readonly ["mono", "color", "light", "dark", "rose300"]; control: { type: "select"; }; description: string; }; }; }; export default meta; type Story = StoryObj; export declare const Playground: Story; export declare const Small: Story; export declare const Large: Story; export declare const MonoVariant: Story; export declare const SpinnerExample: Story; export declare const BasicSpinner: Story; //# sourceMappingURL=Spinner.stories.d.ts.map