import React from "react"; import type { StoryObj } from "@storybook/react"; declare const meta: { title: string; component: React.ForwardRefExoticComponent>; parameters: { layout: string; }; tags: string[]; argTypes: { animation: { control: "select"; options: string[]; }; appearance: { control: "select"; options: string[]; }; }; }; export default meta; type Story = StoryObj & { render?: () => React.JSX.Element; }; export declare const Default: Story; export declare const Variants: Story; export declare const CardSkeleton: Story; //# sourceMappingURL=Skeleton.stories.d.ts.map