import type { Meta, StoryObj } from '@storybook/react-vite'; import { Dialog } from './dialog'; /** * `Dialog` (Radix) is the modal used for confirmations and settings. Compose it * from `DialogTrigger`, `DialogContent`, and the header/footer helpers. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; /** Destructive confirmation flow. */ export declare const Destructive: Story;