import { Chart } from '../chart/chart'; import { TextComponent } from './text.component'; export declare class TextChart extends Chart { color: string; fontWeight?: string; textDecoration?: string; fontStyle?: string; decimalPrecision?: number; dataColor?: string; text?: string; textFontStyle?: Array; component: typeof TextComponent; /** * Constructor */ constructor(text?: TextChart); newText(): void; textChart(text: TextChart): void; }