import { type FC, type Ref } from 'react'; import type { SliderMark } from './types'; export interface SliderMarksProps { /** * Each entry places a tick at `value`; an optional `label` renders below it (and * drives `aria-valuetext` for ordinal scales). Align `step` to the marks so drag * and arrow-keys snap onto them. */ marks: SliderMark[]; className?: string; /** Ref to the Ark MarkerGroup element (the tick overlay). */ ref?: Ref; } /** Tick marks along the track + click-to-jump. Render inside ``. */ export declare const SliderMarks: FC;