import type { Meta, StoryObj } from '@storybook/react-vite'; import { GlowingEffect } from './glowing-effect'; /** * `GlowingEffect` paints an animated conic-gradient border that tracks the * pointer. It positions itself absolutely, so it must live inside a * `relative`, rounded container. Set `disabled={false}` and `glow` to see the * pointer-reactive glow. */ declare const meta: Meta; export default meta; type Story = StoryObj; /** Move the pointer near the card to activate the glow. */ export declare const OnCard: Story;