import type { GetCardResponse, GetDailyCardResponse } from '../types/index.js'; import { RoxyDataElement } from '../utils/base-element.js'; type TarotData = GetCardResponse | GetDailyCardResponse; /** * Tarot card. Renders /tarot/cards/{id} or /tarot/daily. Click to flip * between upright and reversed where the data shape supports it. */ export declare class RoxyTarotCard extends RoxyDataElement { static styles: import("lit").CSSResult[]; private flipped; private toggleFlip; protected renderEmpty(): import("lit").TemplateResult<1>; protected renderData(d: TarotData): import("lit").TemplateResult<1>; private renderDailyCard; private renderFullCard; } declare global { interface HTMLElementTagNameMap { 'roxy-tarot-card': RoxyTarotCard; } } export {}; //# sourceMappingURL=tarot-card.d.ts.map