import { TWithName, TWithTags } from '../../Mixins'; import { Color } from 'three'; export type TFogParams = Readonly<{ color: Color; near?: number; far?: number; }> & TWithName & TWithTags;