import type { SkyFrame } from "../types.js"; import { type SkyProjection } from "../canvas/projection.js"; import type { ConstellationLine } from "../constellations/types.js"; export interface SvgSkyOptions { readonly width?: number; readonly height?: number; readonly background?: string | null; readonly projection?: SkyProjection; readonly rotationDegrees?: number; readonly zoom?: number; readonly showGrid?: boolean; readonly showLabels?: boolean; readonly labelMagnitudeLimit?: number; readonly constellationLines?: readonly ConstellationLine[]; } export declare function renderSkySvg(frame: SkyFrame, options?: SvgSkyOptions): string; //# sourceMappingURL=render.d.ts.map