bc518174
王天杨
提交两个项目文件
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import * as React from 'react';
import { SliderValueLabelProps } from "./SliderValueLabel.types.js";
/**
* @ignore - internal component.
*/
declare function SliderValueLabel(props: SliderValueLabelProps): React.ReactElement<{
className?: string;
children?: React.ReactNode;
}, string | React.JSXElementConstructor<any>> | null;
declare namespace SliderValueLabel {
var propTypes: any;
}
export default SliderValueLabel;
|