import { CometsType } from '@interstellar-tools/types'; /** * Represents a collection of well-known comets within the solar system simulation. * * ::: info * * - Units: `a` (au), `period` (days), `radius` (km); angles `i`, `w`, `om` in degrees. * - Some entries may encode integration direction via a negative `period`; the table reflects the raw value. * * ::: * * {@include ../../../../docs/partials/comets.md} * * **Example item in dataset:** * * {@includeCode ../bodies/comets.ts#datasetComets} * * @group Datasets * @see {@link CometsType}. * @example * ```ts * console.log(COMETS[0].name); // "Halley's Comet" * ``` * */ export declare const COMETS: CometsType; //# sourceMappingURL=comets.d.ts.map