UNPKG

tdesign-react

Version:
11 lines (10 loc) 524 B
import React from 'react'; import type { StyledProps } from '../common'; import type { TdRangeInputProps, RangeInputInstanceFunctions } from './type'; export interface RangeInputProps extends TdRangeInputProps, StyledProps { } export interface RangeInputRefInterface extends React.RefObject<unknown>, RangeInputInstanceFunctions { currentElement: HTMLFormElement; } declare const RangeInput: React.ForwardRefExoticComponent<RangeInputProps & React.RefAttributes<RangeInputInstanceFunctions>>; export default RangeInput;