import { LitElement } from "lit"; import type { IconWeight, IconAttrs } from "../types"; declare global { interface HTMLElementTagNameMap { "ph-vinyl-record": IconAttrs; } namespace JSX { interface IntrinsicElements { "ph-vinyl-record": IconAttrs; } } } declare class PhVinylRecord extends LitElement { static weightsMap: Map>; size?: string | number; weight?: IconWeight; color?: string; mirrored?: boolean; render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } export { PhVinylRecord };