import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "gallery" | "grid" | "single" | "feed"; layout?: import("./SkeletonCard.svelte.ts").SkeletonCardLayout; media?: boolean; avatar?: boolean; actions?: boolean; lines?: number; animation?: "pulse" | "shimmer" | "none"; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; layout: { control: "select"; options: string[]; }; media: { control: "boolean"; }; avatar: { control: "boolean"; }; actions: { control: "boolean"; }; lines: { control: { type: "number"; min: number; max: number; }; }; animation: { control: "select"; options: string[]; }; }; args: { example: "gallery"; layout: "article"; media: true; avatar: true; actions: true; lines: number; animation: "shimmer"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const ProductGrid: Story; export declare const SocialFeed: Story; export declare const Single: Story;