import { SkeletonVariant } from './types';
export interface SkeletonStyledProps {
    $variant?: SkeletonVariant;
    $width?: number | string;
    $height?: number | string;
    $fullWidth: boolean;
    $colors?: [string, string?];
    $opacity?: [number, number?];
}
export declare const SkeletonStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, SkeletonStyledProps>>;
