import React from 'react';
import { SkeletonProps as MuiSkeletonProps } from '@mui/material';
export interface SkeletonProps extends MuiSkeletonProps {
    /**
     * The variant of the skeleton
     */
    variant?: 'text' | 'rectangular' | 'rounded' | 'circular';
    /**
     * The animation of the skeleton
     */
    animation?: 'pulse' | 'wave' | false;
    /**
     * The width of the skeleton
     */
    width?: string | number;
    /**
     * The height of the skeleton
     */
    height?: string | number;
}
export declare const Skeleton: React.FC<SkeletonProps>;
//# sourceMappingURL=Skeleton.d.ts.map