/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { MagColor } from './mag-color'; export declare class MagColors { static supportNumbers: number; static supportRandomSeed: number; static nzColors: string[]; static red: MagColor; static green: MagColor; static darkblue: MagColor; static blue: MagColor; static yellow: MagColor; static orange: MagColor; static pink: MagColor; static purple: MagColor; static white: MagColor; static black: MagColor; static accent: MagColor; static error: MagColor; static disabled: MagColor; static fromName(name: string, defaultValue?: MagColor): MagColor | undefined; static fromRandom(name: string): MagColor; static fromIndex(index: number): MagColor; static fromRandomColor2(name: string): string; static hashCode(s: string): number; static hashCallback(a: any, b: any): number; }