export { default as VedicChart } from './components/VedicChart/VedicChart'; export { default as NorthIndianChart } from './components/VedicChart/NorthIndianChart'; export { default as SouthIndianChart } from './components/VedicChart/SouthIndianChart'; export type { ChartStyle, PlanetDisplayMode, VedicChartData, VedicChartProps, HouseInfo, CustomMarker, } from './types'; export type { PlanetaryPositions, PlanetName, PlanetInfo } from './types'; export { calculateHouses, normalizePlanetaryPositions, getPlanetSymbol, getPlanetName, getPlanetDisplay, formatDegree, getPlanetDegree, degreeToSign, degreeToHouse, degreeToNakshatra, normalizeDegree, ZODIAC_SIGNS, NAKSHATRAS, } from './utils'; export { sampleChartData } from './data'; export declare const defaultStyles = "\n.vedic-chart {\n display: inline-block;\n font-family: Arial, sans-serif;\n}\n\n.vedic-chart svg {\n background-color: #ffffff;\n border-radius: 4px;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);\n}\n\n.vedic-chart .house-label {\n font-size: calc(12px * var(--vedic-font-scale, 1));\n fill: #666666;\n font-weight: bold;\n user-select: none;\n}\n\n.vedic-chart .planet-text {\n font-size: calc(14px * var(--vedic-font-scale, 1));\n font-weight: bold;\n user-select: none;\n}\n\n.vedic-chart .planet-details {\n font-size: calc(12px * var(--vedic-font-scale, 1));\n font-weight: normal;\n fill: #666666;\n}\n\n.vedic-chart .planet-sun { fill: #FF0000; }\n.vedic-chart .planet-moon { fill: #000000; }\n.vedic-chart .planet-mars { fill: #CC0000; }\n.vedic-chart .planet-mercury { fill: #008000; }\n.vedic-chart .planet-jupiter { fill: #FF8C00; }\n.vedic-chart .planet-venus { fill: #FF69B4; }\n.vedic-chart .planet-saturn { fill: #4B0082; }\n.vedic-chart .planet-rahu { fill: #800080; }\n.vedic-chart .planet-ketu { fill: #8B4513; }\n\n.vedic-chart .custom-marker-text {\n font-size: calc(9px * var(--vedic-font-scale, 1));\n font-weight: normal;\n fill: #888888;\n user-select: none;\n}\n";