interface SkeletonProps { variant?: 'text' | 'circular' | 'rectangular' | 'rounded'; width?: string; height?: string; animation?: 'pulse' | 'shimmer' | 'none'; class?: string; } declare const Skeleton: import("svelte").Component; type Skeleton = ReturnType; export default Skeleton;