import { Body } from "astronomy-engine";
import { Dignities, Sect } from "./types";
export declare const SE_PLANETS: {
    readonly Sun: 0;
    readonly Moon: 1;
    readonly Mercury: 2;
    readonly Venus: 3;
    readonly Mars: 4;
    readonly Jupiter: 5;
    readonly Saturn: 6;
    readonly Uranus: 7;
    readonly Neptune: 8;
    readonly Pluto: 9;
};
export declare const DEFAULT_LATITUDE = 54.5973;
export declare const DEFAULT_LONGITUDE = -5.9301;
export declare const ZODIAC_SIGNS: string[];
export declare const DAY_RULERS: Body[];
export declare const CHALDEAN_ORDER: Body[];
export declare const PLANET_DIGNITIES: Dignities;
export declare const PLANET_SECTS: {
    [key: string]: Sect;
};
export declare const DECANS: {
    Aries: string[];
    Taurus: string[];
    Gemini: string[];
    Cancer: string[];
    Leo: string[];
    Virgo: string[];
    Libra: string[];
    Scorpio: string[];
    Sagittarius: string[];
    Capricorn: string[];
    Aquarius: string[];
    Pisces: string[];
};
export declare const BOUNDS: {
    Aries: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Taurus: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Gemini: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Cancer: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Leo: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Virgo: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Libra: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Scorpio: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Sagittarius: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Capricorn: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Aquarius: {
        start: number;
        end: number;
        planet: Body;
    }[];
    Pisces: {
        start: number;
        end: number;
        planet: Body;
    }[];
};
export declare const PLANETS: Body[];
export declare const PLANET_SPEED_LOWER_BOUND: Partial<Record<Body, number>>;
export declare const EARTH_ORBIT_RADIUS = 1;
export declare const EARTH_YEAR = 365.24;
type OrbitalData = {
    radius: number;
    year: number;
};
export declare const PLANET_ORBITS: Partial<Record<Body, OrbitalData>>;
export declare const RETROGRADE_PLANETS: Body[];
export {};
//# sourceMappingURL=constants.d.ts.map