import type { CalculateAspectsResponse, CalculateTransitAspectsResponse, DetectAspectPatternsResponse } from '../types/index.js'; import { RoxyDataElement } from '../utils/base-element.js'; /** * Natal + transit aspect grid with chart-pattern detection. Renders three endpoints that share an aspects/patterns shape: /astrology/aspects (natal aspects + patterns + a harmonious/challenging summary), /astrology/transit-aspects (transiting-to-natal aspects with timing guidance), and /astrology/aspect-patterns (patterns only: grand trines, t-squares, stelliums, yods, kites). Each aspect row shows the two bodies, the aspect type coloured by nature, its orb and strength, and an expandable interpretation; patterns render as labelled cards listing the planets they bind. */ type AspectsData = CalculateAspectsResponse | CalculateTransitAspectsResponse | DetectAspectPatternsResponse; export declare class RoxyAspectsTable extends RoxyDataElement { static styles: import("lit").CSSResult[]; protected renderEmpty(): import("lit").TemplateResult<1>; protected renderData(d: AspectsData): import("lit").TemplateResult<1>; private renderSummary; private renderAspect; private renderMeaning; private renderTransit; private renderPattern; } declare global { interface HTMLElementTagNameMap { 'roxy-aspects-table': RoxyAspectsTable; } } export {}; //# sourceMappingURL=aspects-table.d.ts.map