import * as am4charts from '@amcharts/amcharts4/charts'; import * as am4maps from '@amcharts/amcharts4/maps'; import { TsChart } from './chart.component'; /** * Coerce the type to XYChart * * @param chart - The chart to check * @returns Boolean */ export declare const tsChartXYTypeCheck: (chart: TsChart) => chart is am4charts.XYChart; /** * Coerce the type to PieChart * * @param chart - The chart to check * @returns Boolean */ export declare const tsChartPieTypeCheck: (chart: TsChart) => chart is am4charts.PieChart; /** * Coerce the type to MapChart * * @param chart - The chart to check * @returns Boolean */ export declare const tsChartMapTypeCheck: (chart: TsChart) => chart is am4maps.MapChart; /** * Coerce the type to RadarChart * * @param chart - The chart to check * @returns Boolean */ export declare const tsChartRadarTypeCheck: (chart: TsChart) => chart is am4charts.RadarChart; /** * Coerce the type to TreeMap * * @param chart - The chart to check * @returns Boolean */ export declare const tsChartTreeTypeCheck: (chart: TsChart) => chart is am4charts.TreeMap; /** * Coerce the type to SankeyDiagram * * @param chart - The chart to check * @returns Boolean */ export declare const tsChartSankeyTypeCheck: (chart: TsChart) => chart is am4charts.SankeyDiagram; /** * Coerce the type to ChordDiagram * * @param chart - The chart to check * @returns Boolean */ export declare const tsChartChordTypeCheck: (chart: TsChart) => chart is am4charts.ChordDiagram;