/** * StarField Component * * Renders a background of twinkling stars using instanced points. * Creates the space atmosphere for the galaxy visualization. */ export interface StarFieldProps { /** Number of stars */ count?: number; /** Radius of star field */ radius?: number; /** Base star size */ size?: number; /** Enable twinkling animation */ twinkle?: boolean; } export declare function StarField({ count, radius, size, twinkle, }: StarFieldProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=StarField.d.ts.map