import './natal-chart.js'; import type { RelocationChartResponse } from '../types/index.js'; import { RoxyDataElement } from '../utils/base-element.js'; /** * Relocation chart. The birth instant is unchanged, so every planet keeps its * natal sign and degree while the houses and angles are recomputed for a new * place. Reuses {@link RoxyNatalChart} for the wheel (identical data shape) and * adds the relocation read: the move geometry, the planets that change house, * and the bodies pulled onto a relocated angle. */ export declare class RoxyRelocationWheel extends RoxyDataElement { static styles: import("lit").CSSResult[]; protected renderEmpty(): import("lit").TemplateResult<1>; protected renderData(data: RelocationChartResponse): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'roxy-relocation-wheel': RoxyRelocationWheel; } } //# sourceMappingURL=relocation-wheel.d.ts.map