import { GraphContext } from "../../hooks/use-graph/use-graph"; import { autoMin } from "./utils/auto-min"; import { autoMax } from "./utils/auto-max"; import { FromToJumps } from "../../models/domain/domain"; export declare const DomainUtils: { autoMinFor: typeof autoMin; autoMaxFor: typeof autoMax; x: { ticks: ({ data, viewbox }: Pick, { from, to, jumps, type }?: FromToJumps) => { tick: string | number | import("../../hooks/use-graph/use-graph").TemporalDate; coordinate: number; }[]; }; y: { ticks: ({ data, viewbox }: Pick, { from, to, jumps, type }?: FromToJumps) => { coordinate: number; tick: string | number | import("../../hooks/use-graph/use-graph").TemporalDate; }[]; }; };