import { ScadColor } from '../types/ScadColor'; import { ScadNumber } from '../types/ScadNumber'; import type { Chainable } from '../util/Chainable'; import { ITransformation } from './internals'; export declare type Color = ITransformation<'color', { c: ScadColor; alpha: ScadNumber; }>; export declare function color(this: Chainable, code: ScadColor, alpha?: ScadNumber): Color & import("../util/Chainable").ScadMethods; export declare namespace color { var defaultAlpha: ScadNumber; }