import { HTMLProps } from 'react';
export interface SliderProps extends Omit, 'min' | 'max' | 'onChange' | 'value'> {
/**
* Sets the minimun number of the component
*/
min?: number;
/**
* Sets the maximal number of the component
*/
max?: number;
/**
* Sets the onChange of the component
*/
onChange?: ({ min, max }: {
min: number;
max: number;
}) => void;
/**
* Sets the step of the component
*/
step?: number;
/**
* Sets the stae show text of the component
*/
showText?: boolean;
/**
* Sets the value of the component
*/
value?: {
min: number;
max: number;
};
/**
* Sets the variant of the component
*/
variant?: 'plain' | 'box';
}