import React from 'react';
import { type BoxProps } from '../Box/Box';
export type FunSkeletonCircleProps = Pick<BoxProps, 'margin' | 'marginBottom' | 'marginLeft' | 'marginRight' | 'marginTop'> & {
    /** Defaults to 20px */
    size?: BoxProps['height'] & BoxProps['width'];
};
export declare function FunSkeletonCircle({ size, ...props }: FunSkeletonCircleProps): React.JSX.Element;
