import { CSSResultGroup, LitElement } from 'lit'; export declare class Image extends LitElement { static get styles(): CSSResultGroup; protected _hasSrcfailed: boolean; protected _hasFallbackSrcfailed: boolean; protected _imageLoading: boolean; disabled: boolean; src: string | null; fallbackSrc: string | null; alt: string | null; loading: boolean; rounded: boolean; width: number; height: number; class: string; id: string; getImageUrl(): string; onImageLoad(event: any): void; onImageError(event: any): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'pf-image': Image; } }