import { AsteroidBeltsType } from '@interstellar-tools/types'; /** * Predefined asteroid belts in the solar system visualization. * * ::: info * * - Radii are in astronomical units (au). * - `opacity` is a visual alpha in the range [0..1]. * - `density` is a relative visual density for rendering, not physical. * * ::: * * {@include ../../../../docs/partials/asteroid-belts.md} * * **Example item in dataset:** * * {@includeCode ../bodies/asteroid-belts.ts#datasetAsteroidBelts} * * @example * ```ts * console.log(ASTEROID_BELTS[0].name); // "Main Asteroid Belt" * ``` * @group Datasets * @see {@link AsteroidBeltsType}. * @see https://en.wikipedia.org/wiki/Asteroid_belt * @see https://en.wikipedia.org/wiki/Kuiper_belt */ export declare const ASTEROID_BELTS: AsteroidBeltsType; //# sourceMappingURL=asteroid-belts.d.ts.map