import type { Meta, StoryObj } from '@storybook/react-vite'; import Loader from './Loader'; /** * `Loader` is the spinning SVG used as an inline loading indicator. It inherits * its color from the surrounding text (`text-*`) and its size from `w-*`/`h-*` * utility classes on a wrapper. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; /** Recolored via a wrapper's text color. */ export declare const Colored: Story; /** In context next to a label. */ export declare const WithLabel: Story;