import type { SpectralType, StarPhysicsInput, ResolvedStarData } from '../types/body.types'; declare const SPECTRAL_TABLE: Record; export { SPECTRAL_TABLE }; /** Resolve a StarPhysicsInput to concrete physical values, applying any overrides. */ export declare function resolveStarData(cfg: StarPhysicsInput): ResolvedStarData; /** * Returns `{ radius, tempK }` derived from a StarPhysicsInput — the minimal * star parameters consumed by orbital physics in downstream features. * * `tempK` is the star's surface temperature in Kelvin (e.g. 5778 K for the * Sun). Earlier revisions exposed it as `tempAvg`, which suggested a mean * over a temperature range — an inaccurate framing for a body whose * temperature is a single physical scalar. */ export declare function toStarParams(cfg: StarPhysicsInput): { radius: number; tempK: number; }; //# sourceMappingURL=starPhysics.d.ts.map