import type { Device, Texture } from '@antv/g-device-api'; import type { IMeshBasicMaterial } from './MeshBasicMaterial'; import { MeshBasicMaterial } from './MeshBasicMaterial'; export interface IMeshLambertMaterial extends IMeshBasicMaterial { emissive: string; bumpMap: Texture; bumpScale: number; doubleSide: boolean; } export declare class MeshLambertMaterial extends MeshBasicMaterial { get emissive(): string; set emissive(v: string); get bumpMap(): Texture; set bumpMap(v: Texture); get bumpScale(): number; set bumpScale(v: number); get doubleSide(): boolean; set doubleSide(v: boolean); constructor(device: Device, props?: Partial); } //# sourceMappingURL=MeshLambertMaterial.d.ts.map