import { IChartPalette, IValueProvider } from "../types";
export declare class ChartPalette implements IChartPalette {
    private _standardColors;
    private _textColors;
    private _backgroundColors;
    constructor(colors: string[] | IValueProvider<string>, options?: {
        backgroundOpacity: number;
    });
    get standardColors(): IValueProvider<string>;
    get backgroundColors(): IValueProvider<string>;
    get textColors(): IValueProvider<string>;
}
