import type { ObservedStar, SkyFrame } from "../types.js"; import { type ProjectedPoint } from "./projection.js"; import type { CanvasSize, CanvasSkyOptions } from "./types.js"; export interface RenderedStarPoint { readonly star: ObservedStar; readonly point: ProjectedPoint; } export declare function resizeCanvasBackingStore(canvas: HTMLCanvasElement, size: CanvasSize): void; export declare function renderSkyFrame(context: CanvasRenderingContext2D, frame: SkyFrame, size: CanvasSize, options: CanvasSkyOptions): readonly RenderedStarPoint[]; //# sourceMappingURL=render.d.ts.map