import { Meta, StoryObj } from '@storybook/react-vite'; import { Button } from './button'; declare const meta: Meta; export default meta; type Story = StoryObj; /** * Comprehensive button showcase - all variants, colors, sizes, and states * This single story will be tested in both light and dark modes by Chromatic */ export declare const AllVariants: Story;