/// import { RangeProperties } from './range.properties'; import './range.styles.scss'; /** * Range component * @component * @description A component that renders a range slider with two values min and max * @param {RangeProperties} properties * @returns A range component */ export default function RangeComponent(properties: RangeProperties): JSX.Element;