import { BoxProps } from '../Box/Box'; export interface SkeletonLineOwnProps { width?: string; height?: string; } export interface SkeletonLineProps extends SkeletonLineOwnProps, BoxProps { } export declare type SkeletonLineStylesProps = Required>; export declare const skeletonLineClassName = "ui-skeleton__line"; /** * A SkeletonLine represents a text line that will be loaded */ export declare const SkeletonLine: import("@fluentui/react-bindings").ComponentWithAs<"span", SkeletonLineOwnProps & BoxProps>;