import React from 'react'; type SliderType = 'slider' | 'range'; type SliderValue = T extends 'slider' ? number : [number, number]; export type CustomMarkType = React.ComponentType<{ stepMarked: boolean; currentValue: SliderValue; index: number; min: number; max: number; markValue: number; }>; type CustomMarksProps = { StepMarker?: CustomMarkType; minimumValue: number; maximumValue: number; step: number; activeValue: SliderValue; type: T; inverted: boolean; vertical: boolean; }; declare const Marks: (props: CustomMarksProps) => React.JSX.Element; export default Marks;