import { LitElement } from 'lit'; import '../Thumbnail'; import '../Tooltip'; export interface IAsset { id: string; claimId: string | null | undefined; thumbnailUrl: string | null | undefined; } export interface IAssetClickEvent { asset: IAsset; event: Event; } export declare class Assets extends LitElement { /** * String map for translations/custom text */ stringMap: { CLAIM_INFO_HELP_TEXT: string; }; assets: IAsset[]; private _handleAssetClick; static get styles(): import("lit").CSSResult[]; render(): import("lit-html").TemplateResult<1>; }