import { SCRTPalette, UIntVector } from "../../types/TSciChart"; import { BaseCache } from "./BaseCache"; /** * @ignore */ export declare class PaletteCache extends BaseCache { private fillColors; get value(): SCRTPalette; /** * Creates or fetches a new palette with the specified colors * @param fillColors */ create(fillColors: UIntVector): SCRTPalette; reset(): void; }