export declare class Color { static get black(): Color; static get blue(): Color; static get byBlock(): Color; static get byEntity(): Color; static get byLayer(): Color; static get cyan(): Color; static get darkGray(): Color; static get default(): Color; static get green(): Color; static get lightGray(): Color; static get magenta(): Color; static get red(): Color; static get yellow(): Color; get b(): number; get g(): number; get r(): number; get index(): number; get isByBlock(): boolean; get isByLayer(): boolean; get isTrueColor(): boolean; get trueColor(): number; private static readonly _maxTrueColor; private static readonly _trueColorFlag; private static readonly _indexRgb; private _color; constructor(index: number); constructor(r: number, g: number, b: number); private static _fromIndex; static fromTrueColor(color: number): Color; static getIndexRGB(index: number): number[]; static approxIndex(r: number, g: number, b: number): number; equals(other: Color): boolean; getApproxIndex(): number; getRgb(): number[]; getTrueColorRgb(): number[]; toString(): string; private static _getInt24; private static _getRGBfromTrueColor; } //# sourceMappingURL=Color.d.ts.map