import React from 'react';
import { type BoxProps } from '../Box/Box';
type FunSkeletonBlockProps = {
    borderRadius?: BoxProps['borderRadius'];
    marginBottom?: BoxProps['marginBottom'];
    marginTop?: BoxProps['marginTop'];
    style?: BoxProps['style'];
    height: string;
    /** Defaults to full width */
    width?: BoxProps['width'];
};
export declare function FunSkeletonBlock({ width, borderRadius, height, ...props }: FunSkeletonBlockProps): React.JSX.Element;
export {};
