import type { ScaleTickParams } from 'ag-charts-core'; import type { AgNumericValue } from 'ag-charts-types'; import { ContinuousScale } from './continuousScale'; /** * Maps continuous domain to a continuous range. */ export declare class LinearScale extends ContinuousScale { static is(value: unknown): value is LinearScale; protected static getTickStep(start: number, stop: number, ticks: ScaleTickParams): number; readonly type = "number"; constructor(); toDomain(d: number): AgNumericValue; ticks({ interval, tickCount, minTickCount, maxTickCount }: ScaleTickParams, domain?: AgNumericValue[], visibleRange?: [number, number]): { ticks: AgNumericValue[]; count: number; firstTickIndex?: number; }; niceDomain(ticks: ScaleTickParams, domain?: AgNumericValue[]): AgNumericValue[]; }