import { HouseInfo, PlanetaryPositions, PlanetaryPositionsWithRetrograde, PlanetDisplayMode, PlanetName } from '../types'; export declare const normalizePlanetaryPositions: (planets: PlanetaryPositions | PlanetaryPositionsWithRetrograde) => { positions: PlanetaryPositions; retrogradeInfo: Record; }; export declare function calculateHouses(planets: PlanetaryPositions | PlanetaryPositionsWithRetrograde, ascendant: number, allowKetuOverride?: boolean, bhavaChalit?: boolean, cuspAscendant?: number): HouseInfo[]; export declare function getPlanetSymbol(planetName: string): string; export declare function getPlanetName(planetName: string): string; export declare const getPlanetDisplay: (planetName: PlanetName, mode: PlanetDisplayMode, planets?: PlanetaryPositions | PlanetaryPositionsWithRetrograde, showRetrograde?: boolean) => string; export declare function formatDegree(degree: number): string; export declare const getPlanetDegree: (planetName: PlanetName, planets: PlanetaryPositions | PlanetaryPositionsWithRetrograde, allowKetuOverride?: boolean, showRetrograde?: boolean) => string;