UNPKG

230 BTypeScriptView Raw
1import { FC } from 'react';
2import { ControlProps, NumberValue, RangeConfig } from './types';
3declare type RangeProps = ControlProps<NumberValue | null> & RangeConfig;
4export declare const RangeControl: FC<RangeProps>;
5export {};