import { default as Skeleton } from './skeleton'; import { Meta, StoryObj } from '@storybook/react-vite'; declare const meta: Meta; export default meta; export type Story = StoryObj; /** * Default rectangular skeleton with wave animation. */ export declare const Default: Story; /** * Text variant for single line placeholders. Automatically scales to text height. */ export declare const Text: Story; /** * Circular variant ideal for avatar placeholders. */ export declare const Circular: Story; /** * Rounded variant with large border radius, suitable for buttons and cards. */ export declare const Rounded: Story; /** * Pulse animation provides a subtle fade effect. */ export declare const PulseAnimation: Story; /** * Wave animation (default) provides a shimmer effect. */ export declare const WaveAnimation: Story; /** * Static skeleton without animation. */ export declare const NoAnimation: Story; /** * Example: User profile card loading state. */ export declare const UserProfileCard: Story; /** * Example: Blog post list loading state. */ export declare const BlogPostList: Story;