import type { FC } from 'react'; import { SharedValue } from 'react-native-reanimated'; import { SliderValueType } from './PropsType'; import { SliderStyle } from './style'; type TicksProps = { points: number[]; max: number; min: number; sliderValue: SharedValue; styles: Pick; }; declare const Ticks: FC; export default Ticks;