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