import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "text" | "circular" | "rectangular" | "rounded"; width?: string; height?: string; animation?: "pulse" | "shimmer" | "none"; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; width: { control: "text"; }; height: { control: "text"; }; animation: { control: "select"; options: string[]; }; }; args: { variant: "rounded"; animation: "pulse"; }; }; export default meta; type Story = StoryObj; export declare const RoundedCard: Story; export declare const CircularAvatar: Story; export declare const ShimmerAnimation: Story;