import { MoonsType } from '@interstellar-tools/types'; /** * Represents a dataset of natural satellites (moons) in the solar system. * * * ::: info * * - Units: `a` in astronomical units (au), `period` in days (d), `radius` in kilometers (km). * - Colors are hex strings used only for visual representation. * - The table below is **NOT CURRENTLY** generated from the dataset at build time. * * ::: * * {@include ../../../../docs/partials/moons.md} * * @see {@link MoonsType}. * * **Example item in dataset:** * * {@includeCode ../bodies/moons.ts#datasetMoons} * @group Datasets * @example * ```ts * console.log(MOONS[0].name); // "Moon" * ``` */ export declare const MOONS: MoonsType; //# sourceMappingURL=moons.d.ts.map