import { Star } from "../astres/Star";
export declare const generateStars: ({ stars, count, color, rotationSpeed, ctx, }: {
    stars: Star[];
    count: number;
    color: string;
    rotationSpeed: number;
    ctx: CanvasRenderingContext2D;
}) => Star[];
