import { TickFormatter } from "./tick_formatter"; import type * as p from "../../core/properties"; import type { Dict } from "../../core/types"; export declare namespace CustomJSTickFormatter { type Attrs = p.AttrsOf; type Props = TickFormatter.Props & { args: p.Property>; code: p.Property; }; } export interface CustomJSTickFormatter extends CustomJSTickFormatter.Attrs { } export declare class CustomJSTickFormatter extends TickFormatter { properties: CustomJSTickFormatter.Props; constructor(attrs?: Partial); get names(): string[]; get values(): unknown[]; _make_func(): Function; doFormat(ticks: number[], _opts: { loc: number; }): string[]; } //# sourceMappingURL=customjs_tick_formatter.d.ts.map