import { SKELETON_ITEM_TYPE } from '../../common/interfaces/ui'; export declare class GritSkeletonItem { host: HTMLGritWcSkeletonItemElement; /** Sets the skeleton items border Radius. */ borderRadius: string; /** Sets the skeleton item height. */ height: string; /** Allows for turning off shimmer animation */ isAnimated: boolean; /** Sets the skeleton item type. */ type: SKELETON_ITEM_TYPE; /** Sets the skeleton item width. */ width: string; /** Sets the skeleton item min-width. */ minWidth: string; /** Sets the skeleton item min-height. */ minHeight: string; private skeletonItemShape; componentWillLoad(): void; private skeletonItemShapeFactoryDefaults; private buildShape; private setBorderRadius; private setHeight; private setWidth; private setMinWidth; private setMinHeight; render(): any; }