import { BoxProps } from '../Box/Box'; export interface SkeletonShapeOwnProps { width?: string; height?: string; round?: boolean; } export interface SkeletonShapeProps extends SkeletonShapeOwnProps, BoxProps { } export declare type SkeletonShapeStylesProps = Required>; export declare const skeletonShapeClassName = "ui-skeleton__shape"; /** * A SkeletonShape represents a shape (Image/Button/etc...) that will be loaded */ export declare const SkeletonShape: import("@fluentui/react-bindings").ComponentWithAs<"span", SkeletonShapeOwnProps & BoxProps>;