import type { Meta, StoryObj } from '@storybook/react-vite'; import { Popover } from './popover'; /** * `Popover` (Radix) is the floating panel used for lightweight menus and * inline settings that don't warrant a full modal. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story;