import React, { CSSProperties } from 'react';
import { SliderProps as MantineSliderProps } from '@mantine/core';
export type SliderProps = Omit<MantineSliderProps, 'color'> & {
    color?: string;
    withControl?: boolean;
    isStatic?: boolean;
    containerClassName?: string;
    containerStyle?: CSSProperties;
};
declare const Slider: ({ color, withControl, onChange, value, min, max, isStatic, containerClassName, containerStyle, ...props }: SliderProps) => React.JSX.Element;
export { Slider };
