import { Color } from "../math/Color.ts"; import type { Texture } from "../textures/Texture.ts"; import { Material } from "./Material.ts"; interface BasicMaterialOptions { color?: Color | number | string; map?: Texture | undefined; layer?: number; opacity?: number; transparent?: boolean; depthTest?: boolean; depthWrite?: boolean; shading?: number; side?: number; } /** Solid color or textured, no lighting. Defaults to flat shading. */ export declare class BasicMaterial extends Material { type: string; color: Color; map: Texture | undefined; constructor(options?: BasicMaterialOptions); clone(): BasicMaterial; copy(source: BasicMaterial): this; } export {}; //# sourceMappingURL=BasicMaterial.d.ts.map