import type { PropertyValues } from 'lit'; import { Skeleton } from './skeleton'; import type { SkeletonTagProps } from './skeleton.types'; export declare class SkeletonTag extends Skeleton implements SkeletonTagProps { static styles: import("lit").CSSResult[]; static get properties(): { size: { type: StringConstructor; reflect: boolean; }; width: { type: StringConstructor; reflect: boolean; }; height: { type: StringConstructor; reflect: boolean; }; borderRadius: { type: StringConstructor; attribute: string; reflect: boolean; }; }; size?: SkeletonTagProps['size']; static define(): void; constructor(); update(changedProperties: PropertyValues): void; } declare global { interface HTMLElementTagNameMap { 'm-skeleton-tag': SkeletonTag; } }