import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiTileViewState } from './logic.js'; /** * @slot - Default slot content */ export declare class NuiTile extends LitElement implements NuiTileViewState { href: string; header: string; count: string; countSecondary: string; textSecondary: string; icon: string; unstyled: boolean; nuiType: NuiType; tileClass: string; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; render(): import("lit-html").TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nui-tile': NuiTile; } } //# sourceMappingURL=nui-tile.d.ts.map