import React from 'react'; import '../g.scss'; declare function LabelControl(props: ILabelControl): React.JSX.Element; export default LabelControl; export interface ILabelControl { title?: string | number; value?: number; change?: Function; max?: number; min?: number; step?: number; size?: string; paddingSize?: string; wrapStyle?: React.CSSProperties; }