import { StoryObj } from '@storybook/react-vite'; declare const meta: { title: string; component: (props: import('./card').CardProps) => import("react/jsx-runtime").JSX.Element; parameters: { layout: string; chromatic: { modes: { 'light desktop': { readonly backgrounds: { readonly value: "#ffffff"; }; readonly theme: "light"; readonly viewport: "responsive"; }; 'dark desktop': { readonly backgrounds: { readonly value: "#0c0a09"; }; readonly theme: "dark"; readonly viewport: "responsive"; }; }; }; }; tags: string[]; argTypes: { shadow: { control: "select"; options: string[]; description: string; table: { defaultValue: { summary: string; }; }; }; radius: { control: "select"; options: string[]; description: string; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; /** * Comprehensive card showcase - all shadow variations and use cases * This single story will be tested in both light and dark modes by Chromatic */ export declare const AllVariations: Story;