import React from 'react'; import type { LoadingSkeletonProps } from '../../types/componentPropExports'; /** * Loading skeleton component for better perceived performance * * ## Business Perspective * * Improves perceived performance by showing content placeholders while * data loads, making the application feel more responsive and reducing * user anxiety during loading operations. 📊 * * ## Technical Perspective * * Provides animated placeholder content that mimics the structure of * the actual content being loaded. Uses CSS animations for smooth * skeleton shimmer effect. Supports multiple variants for different * widget layouts. * * @example * ```tsx * // Default 3-line skeleton * * * // Custom number of lines * * * // Summary widget skeleton * * * // Chart widget skeleton * * * // Metrics widget skeleton * * ``` */ export declare const LoadingSkeleton: React.FC; export default LoadingSkeleton; //# sourceMappingURL=LoadingSkeleton.d.ts.map