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