import React from 'react';
import type { PropsWithChildren } from 'react';
interface SkeletonProps {
    loading?: boolean;
    animation?: 'pulse' | 'wave' | false;
    variant?: 'circular' | 'rectangular' | 'rounded' | 'text' | undefined;
    [key: string]: any;
}
declare const Skeleton: React.FC<PropsWithChildren<SkeletonProps>>;
export default Skeleton;
//# sourceMappingURL=Skeleton.d.ts.map