import React, { ElementType } from 'react'; import { BoxProps, SliderProps } from '@mui/material'; export interface SliderContainer extends BoxProps { /** * Slider orientation */ orientation?: SliderProps['orientation']; /** * Size of the slider thumb */ thumbSize?: number; } /** * Simple wrapper of that ensures that thumb does not overflow outside the container */ export declare const SliderContainer: React.FC;