import type { Meta, StoryObj } from '@storybook/react-vite'; import { Tooltip } from './tooltip'; /** * `Tooltip` (Radix) shows a short hint on hover/focus. The library default * `delayDuration` is `0`, so tips appear immediately. Wrap a trigger with * `TooltipTrigger asChild` to keep your own element as the anchor. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const OnButton: Story; /** Tooltip with a keyboard-shortcut hint, mirroring the article toolbar. */ export declare const WithShortcut: Story; /** Placement on all four sides. */ export declare const Sides: Story;