import { Vector3, Color } from 'three';
import { NamedFunction2, NamedFunction4 } from './_Base';
export declare class colorSetRGB extends NamedFunction4<[Color, number, number, number]> {
    static type(): string;
    func(color: Color, r: number, g: number, b: number): Color;
}
export declare class hsvToRgb extends NamedFunction2<[Vector3, Color]> {
    static type(): string;
    func(hsv: Vector3, target: Color): Color;
}
