import type { DivisionalChartResponse } from '../types/index.js'; import { RoxyDataElement } from '../utils/base-element.js'; import { type ChartStyle } from '../utils/kundli-render.js'; /** * Divisional chart renderer (D2-D60). Accepts a DivisionalChartResponse and * renders the same South / North / East kundli grid as the birth chart, plus * division metadata and Vargottama planet pills. A visible tablist lets the * end user switch styles at runtime. The varga response carries a graha-keyed * `chart.meta` map (no per-rashi buckets), so houses are bucketed from that * map. */ export declare class RoxyDivisionalChart extends RoxyDataElement { static styles: import("lit").CSSResult[]; chartStyle: ChartStyle; private setStyle; private viewModel; protected renderEmpty(): import("lit").TemplateResult<1>; protected renderData(d: DivisionalChartResponse): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'roxy-divisional-chart': RoxyDivisionalChart; } } //# sourceMappingURL=divisional-chart.d.ts.map