/// declare module BABYLON { class NormalMaterial extends Material { diffuseTexture: BaseTexture; diffuseColor: Color3; disableLighting: boolean; private _worldViewProjectionMatrix; private _scaledDiffuse; private _renderId; private _defines; private _cachedDefines; constructor(name: string, scene: Scene); needAlphaBlending(): boolean; needAlphaTesting(): boolean; getAlphaTestTexture(): BaseTexture; private _checkCache(scene, mesh?, useInstances?); isReady(mesh?: AbstractMesh, useInstances?: boolean): boolean; bindOnlyWorldMatrix(world: Matrix): void; bind(world: Matrix, mesh?: Mesh): void; getAnimatables(): IAnimatable[]; dispose(forceDisposeEffect?: boolean): void; clone(name: string): NormalMaterial; serialize(): any; static Parse(source: any, scene: Scene, rootUrl: string): NormalMaterial; } }