import React from 'react';
import { SkeletonVariant } from './types';
export interface SkeletonProps {
    className?: string;
    variant?: SkeletonVariant;
    width?: number | string;
    height?: number | string;
    fullWidth?: boolean;
    colors?: [string, string?];
    opacity?: [number, number?];
}
export declare const Skeleton: React.FC<SkeletonProps>;
export * from './types';
