/** * North Indian chart: houses hold fixed positions (house 1 is the top * diamond, counting anticlockwise) and each shows its rashi's number. * Drawn as a square with both diagonals plus the midpoint diamond. */ import type { ChartHouse } from './chart.js'; export declare function renderNorthChart(houses: ChartHouse[], size: number): string; //# sourceMappingURL=chartNorth.d.ts.map