import { Blending, Side } from "three"; export interface MaterialProps { color?: number; side?: Side; depthWrite?: boolean; transparent?: boolean; blending?: Blending; hsl?: { h: number; s: number; l: number; }; } export declare const materialUpdate: (material: any, props: MaterialProps) => void; export declare const uniformsTransition: (uniforms?: any) => any;