import type { TicksFormatter, TicksConfig } from "./types"; export declare const makeLinearTicks: ({ space, formatter, acceptableIncrements, }?: { space?: number; acceptableIncrements?: number[]; formatter?: TicksFormatter; }) => TicksConfig; export declare const defaultNumericalTicksFormatter: TicksFormatter; export declare const makeTimeTicks: ({ timeZone, space, formatter, locale, showTimezone, }?: { formatter?: TicksFormatter; timeZone?: string; space?: number; locale?: string; showTimezone?: boolean; }) => TicksConfig; type MakeTimeTickFormatOpts = { timeZone?: string; locale?: string; showTimezone?: boolean; }; export declare const makeTimeTickFormat: ({ timeZone, locale, showTimezone, }: MakeTimeTickFormatOpts) => TicksFormatter; export {}; //# sourceMappingURL=tickUtils.d.ts.map