import { default as React } from 'react'; import { StyleProps } from '../../style-engine'; declare const skeletonStyles: import('../../style-engine').StylesDef<{ variant: { text: string; circular: string; rectangular: string; }; }>; type SkeletonVariantProps = StyleProps; export interface SkeletonProps extends Omit, keyof SkeletonVariantProps>, SkeletonVariantProps { } export declare function Skeleton({ variant, className, ...props }: SkeletonProps): React.JSX.Element; export {};