/// import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import("react").FC<{ loading: boolean; color?: string | undefined; background?: string | undefined; label?: string | undefined; labelStyle?: import("react").CSSProperties | undefined; }>; tags: string[]; args: { loading: true; }; }; export default meta; type Story = StoryObj; export declare const Loader: Story;