import type { ColorValue } from '../../../core'; import { Color } from '../../../core'; import { Texture2D } from './Texture2D'; export declare class ColorTexture extends Texture2D { protected static _cached: Map; static get(value: ColorValue): ColorTexture; constructor(value: ColorValue | Color); }