import { SkeletonProps } from './types'; /** * MUI-free `Skeleton`: grey placeholder with the pulse animation (default). Reproduces MUI's * variants (`text`/`circular`/`rectangular`/`rounded`), `width`/`height`, and background. `wave` * animation degrades to `pulse` (Tailwind-first). TASK-102. */ export declare const Skeleton: ({ variant, width, height, animation, className, sx, style, children, classes: _classes, component: _component, ...rest }: SkeletonProps) => JSX.Element;