import type { Meta, StoryObj } from '@storybook/react'; import { ListItemHoverContent } from './ListItemHoverContent'; declare const meta: Meta; export default meta; type Story = StoryObj; /** `ListItemHoverContent` accepts 2 props: `hideOnHover` and `showOnHover`, which respectively hidden and shown when hovering. The component has the width of the larger content, therefore it helps sibling text element truncation works properly, and prevents text overlapping. It can be used inside ListItem. * * ```js * import { ListItemHoverContent } from "@galaxy-ds/core"; * ``` */ export declare const Default: Story;