import React from 'react'; export interface SkeletonProps { children?: React.ReactNode; width?: string; height?: string; minHeight?: string; show?: boolean; borderRadius?: string; } export declare const Skeleton: React.ForwardRefExoticComponent>;