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