import { AsteroidsType } from '@interstellar-tools/types'; /** * Represents a collection of well-known asteroids within the solar system simulation. * * ::: info * * - Units: `a` in astronomical units (au); `period` in days (d); `radius` in km. * - Orbital angles `i`, `w`, and `om` are in degrees. * - `color` and `size` are visual rendering hints only. * * ::: * * {@include ../../../../docs/partials/asteroids.md} * * **Example item in dataset:** * * {@includeCode ../bodies/asteroids.ts#datasetAsteroids} * @group Datasets * @see {@link AsteroidsType}. * @example * ```ts * console.log(ASTEROIDS[0].name); // "Ceres" * ``` */ export declare const ASTEROIDS: AsteroidsType; //# sourceMappingURL=asteroids.d.ts.map