UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

23 lines (22 loc) 1.03 kB
import type { RangeSliderFactory, RangeSliderProps, RangeSliderValue } from './RangeSlider/RangeSlider'; import type { SliderCssVariables, SliderStylesNames } from './Slider.context'; import type { SliderFactory, SliderProps } from './Slider/Slider'; import type { SliderMark } from './SliderMark'; export { Slider } from './Slider/Slider'; export { RangeSlider } from './RangeSlider/RangeSlider'; export type { SliderProps, SliderStylesNames, SliderCssVariables, SliderFactory, RangeSliderProps, RangeSliderValue, RangeSliderFactory, SliderMark, }; export declare namespace Slider { type Props = SliderProps; type StylesNames = SliderStylesNames; type CssVariables = SliderCssVariables; type Factory = SliderFactory; type Mark = SliderMark; } export declare namespace RangeSlider { type Props = RangeSliderProps; type Value = RangeSliderValue; type Factory = RangeSliderFactory; type StylesNames = SliderStylesNames; type CssVariables = SliderCssVariables; type Mark = SliderMark; }