import { BoxProps } from '../Box/Box';
export interface SkeletonLineOwnProps {
    width?: string;
    height?: string;
}
export interface SkeletonLineProps extends SkeletonLineOwnProps, BoxProps {
}
export declare type SkeletonLineStylesProps = Required<Pick<SkeletonLineOwnProps, 'width' | 'height'>>;
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>;
