import type { PropertyValues } from 'lit'; import { Component } from '../component'; import type { SkeletonProps } from './skeleton.types'; export declare class Skeleton extends Component implements SkeletonProps { static styles: import("lit").CSSResult[]; static get properties(): { width: { type: StringConstructor; reflect: boolean; }; height: { type: StringConstructor; reflect: boolean; }; borderRadius: { type: StringConstructor; attribute: string; reflect: boolean; }; }; width?: SkeletonProps['width']; height?: SkeletonProps['height']; borderRadius?: SkeletonProps['borderRadius']; static define(): void; constructor(); protected update(changedProperties: PropertyValues): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'm-skeleton': Skeleton; } }