UNPKG

340 BTypeScriptView Raw
1import * as React from 'react';
2import { BsPrefixOnlyProps } from './helpers';
3export interface FormRangeProps extends BsPrefixOnlyProps, Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> {
4}
5declare const FormRange: React.ForwardRefExoticComponent<FormRangeProps & React.RefAttributes<HTMLInputElement>>;
6export default FormRange;