export interface SkeletonProps { width?: number | string; height?: number | string; borderRadius?: number | string; backgroundColor?: string; opacity?: number; animate?: boolean; lightBackground?: string; lightAnimate?: string; className?: string; } export declare function BCSkeleton({ width, height, borderRadius, backgroundColor, opacity, animate, lightBackground, lightAnimate, className, }: SkeletonProps): import("@emotion/react/jsx-runtime").JSX.Element;