import { ChartDrawArea } from "./chart_area"; export declare function colorThemeGenerator0(): { colorDefault: string; colorSequentialHigh: string; colorSequentialMid: string; colorSequentialLow: string; colorPaletteQual: string[]; colorPaletteSemanticPositive: string[]; colorPaletteSemanticNegative: string[]; colorPaletteSemanticCaution: string[]; colorPaletteSemanticNeutral: string[]; colorPaletteSequentialBrandBlue: string[]; colorPaletteSequentialPurple: string[]; colorPaletteSequentialGreen: string[]; colorPaletteSequentialOrange: string[]; colorPaletteSequentialGray: string[]; colorDark: string; colorLight: string; colorSequentialDarkHigh: string; colorSequentialDarkLow: string; colorSequentialLightHigh: string; colorSequentialLightLow: string; colorPaletteQualDark: string[]; colorPaletteQualLight: string[]; colorNeutralLight: string; colorNeutralMedium: string; colorNeutralDark: string; }; export declare function colorThemeGenerator1(): { colorDefault: string; colorSequentialHigh: string; colorSequentialMid: string; colorSequentialLow: string; colorPaletteQual: string[]; colorPaletteSemanticPositive: string[]; colorPaletteSemanticNegative: string[]; colorPaletteSemanticCaution: string[]; colorPaletteSemanticNeutral: string[]; colorPaletteSequentialBrandBlue: string[]; colorPaletteSequentialPurple: string[]; colorPaletteSequentialGreen: string[]; colorPaletteSequentialOrange: string[]; colorPaletteSequentialGray: string[]; colorDark: string; colorLight: string; colorSequentialDarkHigh: string; colorSequentialDarkLow: string; colorSequentialLightHigh: string; colorSequentialLightLow: string; colorPaletteQualDark: string[]; colorPaletteQualLight: string[]; colorNeutralLight: string; colorNeutralMedium: string; colorNeutralDark: string; }; export declare function colorThemeGenerator2(): { colorDefault: string; colorSequentialHigh: string; colorSequentialMid: string; colorSequentialLow: string; colorPaletteQual: string[]; colorPaletteSemanticPositive: string[]; colorPaletteSemanticNegative: string[]; colorPaletteSemanticCaution: string[]; colorPaletteSemanticNeutral: string[]; colorPaletteSequentialBrandBlue: string[]; colorPaletteSequentialPurple: string[]; colorPaletteSequentialGreen: string[]; colorPaletteSequentialOrange: string[]; colorPaletteSequentialGray: string[]; colorDark: string; colorLight: string; colorSequentialDarkHigh: string; colorSequentialDarkLow: string; colorSequentialLightHigh: string; colorSequentialLightLow: string; colorPaletteQualDark: string[]; colorPaletteQualLight: string[]; colorNeutralLight: string; colorNeutralMedium: string; colorNeutralDark: string; }; export declare function colorThemeGenerator3(): { colorDefault: string; colorSequentialHigh: string; colorSequentialMid: string; colorSequentialLow: string; colorPaletteQual: string[]; colorPaletteSemanticPositive: string[]; colorPaletteSemanticNegative: string[]; colorPaletteSemanticCaution: string[]; colorPaletteSemanticNeutral: string[]; colorPaletteSequentialBrandBlue: string[]; colorPaletteSequentialPurple: string[]; colorPaletteSequentialGreen: string[]; colorPaletteSequentialOrange: string[]; colorPaletteSequentialGray: string[]; colorDark: string; colorLight: string; colorSequentialDarkHigh: string; colorSequentialDarkLow: string; colorSequentialLightHigh: string; colorSequentialLightLow: string; colorPaletteQualDark: string[]; colorPaletteQualLight: string[]; colorNeutralLight: string; colorNeutralMedium: string; colorNeutralDark: string; }; export declare class Theme { static getInstance(): Theme; private static _instance; miniWidth: number; colors: any; colorLight: string; colorDark: string; colorNeutralLight: string; colorNeutralMedium: string; colorNeutralDark: string; colorSequentialLightHigh: string; colorSequentialLightLow: string; colorSequentialDarkHigh: string; colorSequentialDarkLow: string; colorPaletteQualLight: any; colorPaletteQualDark: any; minLineWidth: number; maxLineWidth: number; linePercentage: number; minArea: number; maxArea: number; areaPercentage: number; areaPercentageRange: number[]; textAxisLabelSize: number; shapes: any; constructor(); getAreaRange(drawArea: ChartDrawArea): number[]; getArea(drawArea: ChartDrawArea): number; getLineWidth(drawArea: ChartDrawArea): number; }