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; display?: (tick: string | number | TemporalDate) => ReactNode; description?: ReactNode; position?: "left" | "right"; dataset?: string; }; export declare const YAxis: { ({ title, description, display, dataset, teeth, position, ...rest }: Props): React.JSX.Element; context(ctx: InternalGraphContext, props: Props): InternalGraphContext; }; export {};