export type ColorBlendMode = 'normal' | 'multiply' | 'overlay' | 'screen' | 'add' | 'subtract' | 'divide' | 'darken' | 'lighten' | 'color-burn' | 'color-dodge' | 'soft-light' | 'hard-light'; export type NormalBlendMode = 'rnb' | 'linear' | 'whiteout' | 'udn' | 'partial_derivative' | 'overlay'; export type ScalarBlendMode = 'normal' | 'min' | 'max' | 'multiply' | 'average' | 'overlay' | 'add' | 'subtract'; export interface BlendModeConfig { color?: ColorBlendMode; normal?: NormalBlendMode; roughness?: ScalarBlendMode; metalness?: ScalarBlendMode; ao?: ScalarBlendMode; } //# sourceMappingURL=BlendModeConfig.d.ts.map