import Node from "../core/Node.js"; import MathNode from "../math/MathNode.js"; import { NodeRepresentation, ShaderNodeObject } from "../tsl/TSLCore.js"; export const grayscale: (color: NodeRepresentation) => ShaderNodeObject; export const saturation: ( color: NodeRepresentation, adjustment?: NodeRepresentation, ) => ShaderNodeObject; export const vibrance: ( color: NodeRepresentation, adjustment?: NodeRepresentation, ) => ShaderNodeObject; export const hue: ( color: NodeRepresentation, adjustment?: NodeRepresentation, ) => ShaderNodeObject; export const luminance: ( color: NodeRepresentation, luminanceCoefficients?: NodeRepresentation, ) => ShaderNodeObject; export const threshold: (color: NodeRepresentation, thershold: NodeRepresentation) => ShaderNodeObject;