import type { Meta, StoryObj } from '@storybook/react-vite'; import { VisuallyHidden } from './visually-hidden'; /** * `VisuallyHidden` hides content visually while keeping it available to screen * readers. Use it to give icon-only controls an accessible name, or to label a * dialog whose title is not shown. */ declare const meta: Meta; export default meta; type Story = StoryObj; /** * The icon button has no visible text, but screen readers announce * "Close panel" from the visually-hidden label. */ export declare const AccessibleIconButton: Story; /** The text is present in the DOM (and read aloud) but not painted. */ export declare const HiddenText: Story;