import React from 'react'; export declare const SkeletonGroupStyle: import("styled-components").StyledComponent<"span", any, SkeletonProps, never>; export declare const SkeletonStyle: import("styled-components").StyledComponent<"div", any, SkeletonProps, never>; export interface SkeletonProps { w?: string; h?: string; radius?: string; className?: string; children?: React.ReactNode; } declare const Skeleton: React.FC; export default Skeleton;