import { type FC, type ReactNode, type Ref } from 'react'; export interface SliderControlProps { children?: ReactNode; className?: string; /** Ref to the Ark Control element (the track region). */ ref?: Ref; } /** The interactive track region — renders the track + range, then the thumb(s) / marks. */ export declare const SliderControl: FC;