import { SafeHtml } from '@angular/platform-browser';
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;
htmlText?: string;
sanitizedHtmlText?: SafeHtml;
textFontStyle?: Array;
component: typeof TextComponent;
/**
* Constructor
*/
constructor(text?: TextChart);
newText(): void;
textChart(text: TextChart): void;
}