import { PropsWithChildren } from 'react'; export interface MuJoCoLightingProps extends PropsWithChildren { n: number; ambient: Float32Array; } export declare const floatRgbToHex: (rgb: [number, number, number]) => string; export declare const MuJoCoLighting: ({ n, ambient, }: MuJoCoLightingProps) => import("react/jsx-runtime").JSX.Element;