import { Component } from "../component"; import { Threshold } from "../essentials/threshold"; export declare class TwoDimensionalAxes extends Component { type: string; children: any; thresholds: Threshold[]; margins: { top: number; right: number; bottom: number; left: number; }; render(animate?: boolean): void; addAxisThresholds(animate: any, axisPosition: any): void; }