import { StarsType } from '@interstellar-tools/types'; /** * Represents a dataset of well-known stars within the Milky Way. * * ::: info * * - Units: `radius` (km); galactocentric coordinates `x`,`y`,`z` (ly); orbital semi-major axis `a` (ly); * `period` in million years (Myr); orbital angles are unitless here (radians) if provided. * - `color` is for visualization only. * - Negative `period` may encode integration direction; the table shows raw values. * * ::: * * {@include ../../../../docs/partials/stars.md} * * **Example item in dataset:** * * {@includeCode ../bodies/stars.ts#datasetStars} * @group Datasets * @see {@link StarsType}. * @example * ```ts * console.log(STARS[0].name); // "Sun" * ``` */ export declare const STARS: StarsType; //# sourceMappingURL=stars.d.ts.map