import { TickFormatter } from "./tick_formatter"; import { RoundingFunction } from "../../core/enums"; import type * as p from "../../core/properties"; export declare namespace NumeralTickFormatter { type Attrs = p.AttrsOf; type Props = TickFormatter.Props & { format: p.Property; language: p.Property; rounding: p.Property; }; } export interface NumeralTickFormatter extends NumeralTickFormatter.Attrs { } export declare class NumeralTickFormatter extends TickFormatter { properties: NumeralTickFormatter.Props; constructor(attrs?: Partial); private get _rounding_fn(); doFormat(ticks: number[], _opts: { loc: number; }): string[]; } //# sourceMappingURL=numeral_tick_formatter.d.ts.map