import React from 'react';
import { type BoxProps } from '../Box/Box';
type FunSkeletonBlockProps = {
    borderRadius?: BoxProps['borderRadius'];
    marginBottom?: BoxProps['marginBottom'];
    marginTop?: BoxProps['marginTop'];
    style?: BoxProps['style'];
    /** Defaults to full width */
    width?: BoxProps['width'];
} & ({
    fontSize?: never;
    height: Exclude<BoxProps['height'], undefined> | `${number}px`;
} | {
    fontSize: Exclude<BoxProps['fontSize'], undefined | 'inherit'>;
    height?: never;
});
export declare function FunSkeletonBlock({ borderRadius, fontSize, height, width, ...props }: FunSkeletonBlockProps): React.JSX.Element;
export {};
