import React, { ComponentProps, ReactNode } from "react"; import { InternalGraphContext, TemporalDate } from "../../hooks/use-graph/use-graph"; import { FromToJumps } from "../../models/domain/domain"; type Props = Omit, "title"> & { ticks?: FromToJumps; title?: ReactNode; teeth?: boolean; description?: ReactNode; dataset?: string; display?: (tick: number | string | TemporalDate) => ReactNode; }; export declare const XAxis: { ({ display, title, ticks, description, dataset, teeth, ...rest }: Props): React.JSX.Element; context(ctx: InternalGraphContext, props: Props): InternalGraphContext; }; export {};