import type { StoryObj } from "@storybook/react"; import React from "react"; declare const meta: { title: string; component: React.ForwardRefExoticComponent>; tags: string[]; argTypes: { variant: { options: readonly ["primary", "secondary", "tertiary"]; control: { type: "select"; }; description: string; }; size: { options: readonly ["xs", "sm", "md", "lg"]; control: { type: "select"; }; description: string; }; disabled: { control: "boolean"; description: string; }; className: { control: "text"; description: string; }; selected: { control: "boolean"; description: string; }; children: { control: "text"; description: string; }; }; }; export default meta; type Story = StoryObj; export declare const Playground: Story; export declare const Primary: Story; export declare const Secondary: Story; export declare const Tertiary: Story; export declare const DisabledCard: Story; export declare const SelectedCard: Story; export declare const AllVariants: Story; export declare const InteractiveStates: Story; export declare const WithActions: Story; export declare const SelectableGrid: Story; export declare const DualSelectable: Story; //# sourceMappingURL=Card.stories.d.ts.map