import type { KpChartResponse } from '../types/index.js'; import { RoxyDataElement } from '../utils/base-element.js'; /** * KP (Krishnamurti Paddhati) chart. Renders /vedic-astrology/kp/chart: the * Ascendant with its full stellar hierarchy, a planets-and-nodes table, and a * Placidus cusps table. The cusp and planet sub lords are the primary * predictive surface in KP astrology, so each row carries star lord, sub lord, * sub-sub lord, and KP number (1-249). */ export declare class RoxyKpChart extends RoxyDataElement { static styles: import("lit").CSSResult[]; private activeTab; /** Merge the 7 planets and the two nodes into one ordered body list. */ private bodies; private onTabKeyDown; protected renderEmpty(): import("lit").TemplateResult<1>; protected renderData(d: KpChartResponse): import("lit").TemplateResult<1>; private renderPlanets; private renderCusps; } declare global { interface HTMLElementTagNameMap { 'roxy-kp-chart': RoxyKpChart; } } //# sourceMappingURL=kp-chart.d.ts.map