import { PlanetsType } from '@interstellar-tools/types'; /** * Represents a dataset of planets and planetoids in the solar system. * * * ::: info * * - Units: `a` (au), `period` (days), `radius` (km); coordinates `x`,`y`,`z` in au. * - Some entries may encode integration direction via a negative `period`; the table reflects the raw value. * * ::: * * * {@include ../../../../docs/partials/planets.md} * * **Example item in dataset:** * * {@includeCode ../bodies/planets.ts#datasetPlanets} * @see {@link PlanetsType}. * @group Datasets * @example * ```ts * console.log(PLANETS[0].name); // "Mercury" * ``` */ export declare const PLANETS: PlanetsType; //# sourceMappingURL=planets.d.ts.map