import { Component } from 'solid-js'; import { VedicChartProps } from '../../types'; import '../../styles/vedic-chart.css'; type ChartProps = Omit & { showRetrograde?: boolean; }; declare const NorthIndianChart: Component; export default NorthIndianChart;