export interface SeqPalette { /** Monomer color * @param {string} m Monomer */ get(m: string, polymerType?: string): string; } export declare class SeqPaletteBase implements SeqPalette { static undefinedColor: string; /** Palette with shades of primary colors */ static colourPalette: { [key: string]: string[]; }; protected static makePalette(dt: [string[], string][], simplified?: boolean, PaletteType?: typeof SeqPaletteBase): SeqPaletteBase; private readonly _palette; constructor(palette: { [m: string]: string; }); get(m: string, polymerType?: string): string; } //# sourceMappingURL=seq-palettes.d.ts.map