import { WidthProps, ColorProps } from 'styled-system'; import { Omit } from 'type-fest'; export declare type BoneProps = WidthProps & Omit & { /** Sets Bone pulsating */ animated?: boolean; /** Height of the Bone (theme number, px, rem, em, vh) */ height?: string | number; }; export declare const Bone: import("@emotion/styled-base").StyledComponent, HTMLSpanElement>, BoneProps, any>;