import type { ColorLike } from '@use-gpu/core'; export type AmbientLightProps = { color?: ColorLike; intensity?: number; }; export declare const AmbientLight: (props: AmbientLightProps) => null;