import { LitElement } from 'lit'; /** * Image-map-style sticker sheet with slotted positioned links. * * @slot - Absolutely positioned links or buttons. * @csspart chrome - The figure wrapper. * @csspart image - The base image. * @csspart hotspots - Hotspot overlay. * @csspart caption - Optional caption. */ export declare class W1cImageMap extends LitElement { src: string; alt: string; caption: string; render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-image-map': W1cImageMap; } }