export declare const getXTicks: (series: any[], ticksCount: number, xProperty: string) => string[]; /** * Instantiates a new instance of the NiceScale class. * Calculate and update values for tick spacing and nice * minimum and maximum data points on the axis. */ export declare function niceYScale(min: number, max: number, maxTicks: number): [tickSpacing: number, niceMax: number, niceMin: number];