@mui/material
Version:
React components that implement Google's Material Design.
11 lines (10 loc) • 375 B
TypeScript
import * as React from 'react';
import { SliderValueLabelProps } from './SliderValueLabel.types';
/**
* @ignore - internal component.
*/
declare function SliderValueLabel(props: SliderValueLabelProps): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
declare namespace SliderValueLabel {
var propTypes: any;
}
export default SliderValueLabel;